add main, fix warnings not intended
[cparser] / parsetest / should_fail / kr3.c
1 extern int k;
2
3 int a(first, second, third)
4         const char *third;
5         float first;
6         int second;
7         int k;
8         float l;
9 {
10         printf("Args: %d %f %s\n", first, second, third);
11         return 0;
12 }
13
14 int main(void)
15 {
16         a(42.32, 42, "What is 6 times 9?\n");
17         return 0;
18 }