permit multiline comments and strings in macros
[bpt/coccinelle.git] / tests / macro_int16.res
1 #define INT16 int
2 //typedef int INT16;
3
4 void main(void)
5 {
6 INT16 a, b, c;
7 c = a - b;
8 }
9