Coccinelle release 0.2.5-rc8
[bpt/coccinelle.git] / tests / used_after_ver1.c
1 int my_proc_info(int i);
2
3 void f1() {
4 int x;
5 }
6
7 void f2() {
8 int x;
9 x.proc_info = &my_proc_info;
10 }
11
12 int my_proc_info(int i) {
13 return i++;
14 }
15
16
17 int not_a_proc_info_function(int i) {
18 return i++;
19 }