permit multiline comments and strings in macros
[bpt/coccinelle.git] / tests / befS.c
CommitLineData
951c7801
C
1int main () {
2 xxx();
3 if(y) {
4 rrr();
5 }
6}
7
abad11c5
C
8int main () {
9 xxx();
10 if(y)
11 rrr();
12}
13
951c7801
C
14
15int d() {}
16
17int main2 () {
18 yyy();
19 xxx();
20}