Release coccinelle-0.2.3rc1
[bpt/coccinelle.git] / demos / ioctl_multiple_rules.c
CommitLineData
34e49164
C
1
2
3struct file_operations fops;
4
5void init(int i)
6{
7
8 fops.ioctl = my_ioctl;
9}
10
11
12
13void my_ioctl(int i)
14{
15 foo(1);
16}
17
18
19
20void not_ioctl(int i)
21{
22 foo(1);
23}