views:

464

answers:

1

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.

+3  A: 

Use it in traditional mode, ie '-traditional-cpp' as described here.

Martin Wickman