Release coccinelle-0.2.3rc6
[bpt/coccinelle.git] / tests / dropparam.c
1 int f(char *x, int y, char* z) {
2 return;
3 }
4
5 int g(char *x, int y, char* z) {
6 return;
7 }
8
9
10 void main(void)
11 {
12 g("toto", 3, "tata");
13 }