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