add new shouldpass category
[cparser] / parsetest / shouldpass / fewparams.c
1 static void foo();
2
3 static void kaputt(void) {
4         foo(1);
5 }
6
7 static void foo(int a, int b) {
8         (void) a;
9         (void) b;
10         printf("%d %d\n", a, b);
11 }
12
13 int main(void) {
14         kaputt();
15         return 0;
16 }