For the code:
int i;
gcc preprocessor outputs:
int i;
How to force it to preserve whitespace?
I call preprocessor with: gcc -E somefile.c command.
For the code:
int i;
gcc preprocessor outputs:
int i;
How to force it to preserve whitespace?
I call preprocessor with: gcc -E somefile.c command.
Use it in traditional mode, ie '-traditional-cpp' as described here.