Release coccinelle-0.1
[bpt/coccinelle.git] / tests / multi_func1.c
1 int f1() {
2 foo(12);
3 }
4
5 int f2() {
6 bar(12);
7 }
8
9 int f3() {
10 bar(7);
11 }
12
13 int f4() {
14 foo(12);
15 }
16
17 int f5() {
18 bar(12);
19 }
20
21 int main() {
22 f1();
23 f2();
24 f3();
25 }
26