Release coccinelle-0.1.8
[bpt/coccinelle.git] / tests / ktype.cocci
CommitLineData
34e49164
C
1@@
2type T, T2;
3type T1;
4T1 *x;
5T1 *y;
6expression E2;
7@@
8
9- x = kmalloc(sizeof(T1),E2)
708f4980 10+ x = kzalloc(sizeof(T1), E2)
34e49164
C
11 ...
12- memset(x,0,sizeof(*y));