permit multiline comments and strings in macros
[bpt/coccinelle.git] / demos / interprocedural_adhoc.c
1
2 void ioctl(int i)
3 {
4
5 g(1);
6 h(2);
7 w(3);
8 z(4);
9
10 }
11
12
13
14
15
16 void g(int i) {
17 bar(1);
18 }
19
20 void h(int i) {
21 bar(1);
22 }
23
24 void w(int i) {
25 bar(1);
26 }
27
28 void z(int i) {
29 bar(1);
30 }