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