Release coccinelle-0.1.8
[bpt/coccinelle.git] / tests / ifdef4.cocci
1 @ Exemple4 @ @@
2
3 init_IRQ(...)
4 {
5 <...
6 + #ifdef CONFIG_NKERNEL
7 + if(irq < IRQ_LIMIT)
8 + #endif
9 *desc = irq_desc;
10 ...>
11 }