permit multiline comments and strings in macros
[bpt/coccinelle.git] / demos / platform_ifdef.c
CommitLineData
0708f913
C
1void main()
2{
3 buf = alloca(3
4 #ifdef PLATFORM_A
5 +5
6 #endif
7 #ifdef PLATFORM_B
8 +2
9 #endif
10 );
11
12}