tcc -E: preserve spaces, alternative solution
commit0f0ed4a8bf2b6f6bdcab1a46c34c6f54005bf34e
authorgrischka <grischka>
Fri, 17 Apr 2009 20:44:08 +0000 (17 22:44 +0200)
committergrischka <grischka>
Sat, 18 Apr 2009 13:08:02 +0000 (18 15:08 +0200)
tree2e8a8417674a688971fca895bd72e9a31131b091
parent90697c4c561a1a68441939467c9c41b76cb1b47a
tcc -E: preserve spaces, alternative solution

/* test case */
#define STR(x) #x
#define MKSTR(x) STR(x)
MKSTR(-A-)
MKSTR(+ B +)

tcc -E: expected result:
"-A-"
"+ B +"
tcc.c