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