permit multiline comments and strings in macros
[bpt/coccinelle.git] / demos / iso-kzalloc.c
1 void main(int i)
2 {
3
4 kzalloc(2 * sizeof(int), GFP_KERNEL);
5 kzalloc(sizeof(int) * 2, GFP_KERNEL);
6
7 }