Release coccinelle-0.2.1-rc1
[bpt/coccinelle.git] / tests / detect_alloc.cocci
CommitLineData
34e49164
C
1@@
2type T;
3identifier f;
4T *x;
5@@
6
7* T *f(...)
8{
9 ...
10 x = kmalloc(...);
11 ...
12 return x;
13}