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