add bunch of testapps
[cparser] / parsetest / shouldpass / fewparams.c
index d0e2b62..1d6b372 100644 (file)
@@ -1,3 +1,5 @@
+int printf(const char *fmt, ...);
+
 static void foo();
 
 static void kaputt(void) {
@@ -7,7 +9,6 @@ static void kaputt(void) {
 static void foo(int a, int b) {
        (void) a;
        (void) b;
-       printf("%d %d\n", a, b);
 }
 
 int main(void) {