
9 Oct
2013
9 Oct
'13
10:24 p.m.
Lev Lafayette <lev@levlafayette.com> wrote:
test.c:
#include <stdio.h> int main(void) { int linux = 5; return 0; }
Result of $ gcc -E test.c (stop after the preprocessing stage):
.... int main(void) { int 1 = 5; return 0; }
It still occurs if I omit the inclusion of stdio.h, so I'd describe it as a compiler bug.