If I process the following input file test.def
with gcc -C -x c -E test.def
:
#define TEST foo
int TEST;
I would like the result to be simple:
int foo;
Instead, I get:
# 1 "test.def"
# 1 "<built-in>"
# 1 "<command-line>"
# 1 "test.def"
int foo;
Is there a way I can omit these extra lines at the top?
source
share