permit multiline comments and strings in macros
[bpt/coccinelle.git] / demos / xxx_info.c
CommitLineData
34e49164
C
1int wd7000_info(int x) {
2 float z;
3 scsi *y;
4 z = x + 1;
5 y = scsi_get();
6 if(!y) {
7 kprintf("error");
8 return -1;
9 }
10 kprintf("val = %d", y->field + z);
11 scsi_put(y);
12 return 0;
13}
14