Release coccinelle-0.1.1
[bpt/coccinelle.git] / tests / param_end.c
1 int one (int x) { return; }
2
3 int two (int a, int x, int b) { return; }
4
5 int three (int x, int a) { return; }
6
7 int four (int a, int x) { return; }
8
9 int yone (int y) { return; }
10
11 int ytwo (int a, int y, int b) { return; }
12
13 int ythree (int y, int a) { return; }
14
15 int yfour (int a, int y) { return; }