Release coccinelle-0.1.8
[bpt/coccinelle.git] / tests / ifdefmeta1.c
1 int main() {
2 buf = alloca(3
3 #ifdef PLATFORM_A
4 // platform a stuff
5
6
7 +5
8
9
10
11 #endif
12 #ifdef PLATFORM_B
13 /* platform b stuff */
14 +2
15 #endif
16 );
17 }