I am using CPP to expand a test file based on multiple headers. Pre processed file is used by other scripts.
When i use EXPAND_SPEC define. I want the CPP to put following lines in file.
A B
C D
E F
So i tried using following define
#define EXPAND_SPEC\
A B \
C D \
E F
But, CPP replaces this define in following fashion
A B C B E F
How to get new line character using define.