음... 뭐 모든 컴파일러가 제 취향에 맞는 에러 메세지를
생성하는 것은 아니지만, 에러 메세지들이 너무 낯설어서
'에러 메세지에 관한 도움말'이 있었으면 하는 생각이 들
었습니다.
다음은 간단한 소스와 그에 대한 에러 메세지 입니다.
[code:1]<tmp_hdr.h>
#if !defined TMP_HDR_H
#define TMP_HDR_H
struct test;
typedef struct test* ptr;
typedef struct test
{
int i;
char ch;
ptr next;
};
#endif
<test.c>
#include<stdio.h>
#include"tmp_hdr.h"