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