Coccinelle release 0.2.5-rc8
[bpt/coccinelle.git] / tests / nocast.cocci
CommitLineData
34e49164
C
1@@
2identifier f, gfp;
3type T;
4@@
5
6f(...,
7- T gfp
8+ gfp_t gfp
9 , ...) {
10 ...
11 kmalloc(...,gfp)
12 ...
13}