create a header file named wgtcc.h:
foo.c:
#include <wgtcc.h>
void foo() {}
$ wgtcc -E foo.c -I.
fuckfuck
void foo() {}
The output is strange.
If we don't create wgtcc.h, the internal wgtcc.h would be included accidentally.
In short, the internal wgtcc.h must NOT be placed in the standard including path.
create a header file named
wgtcc.h:foo.c:The output is strange.
If we don't create
wgtcc.h, the internalwgtcc.hwould be included accidentally.In short, the internal
wgtcc.hmust NOT be placed in the standard including path.