Coccinelle release 1.0.0-rc1
[bpt/coccinelle.git] / tests / ifdefmeta1.c
CommitLineData
708f4980
C
1int 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}