permit multiline comments and strings in macros
[bpt/coccinelle.git] / demos / iso-kzalloc.cocci
CommitLineData
34e49164
C
1// A*B is not just a toy isomorphism :) it's really useful sometimes.
2
3@@
4expression E;
5constant c;
6type T;
7@@
8
9-kzalloc(c * sizeof(T), E)
10+kcalloc(c, sizeof(T), E)