permit multiline comments and strings in macros
[bpt/coccinelle.git] / demos / xxx_info.cocci
CommitLineData
34e49164
C
1@@
2function xxx_info;
3identifier x,y;
4@@
5 int xxx_info(int x
6+ ,scsi *y
7 ) {
8 ...
9- scsi *y;
10 ...
11- y = scsi_get();
12- if(!y) { ... return -1; }
13 ...
14- scsi_put(y);
15 ...
16}
17
18