Release coccinelle-0.2.5-rc2
[bpt/coccinelle.git] / tests / undef.c
1 #define foo 12
2 #undef foo
3
4 #define foo 12
5 int main () {
6 #undef foo
7 return;
8 }
9
10 int main () {
11 #define foo 12
12 return;
13 }
14 #undef foo
15
16
17