Implement -Wunknown-pragmas.
[cparser] / parsetest / kr.c
1
2 int a(first, second, third)
3         float second;
4         const char *third;
5         int first;
6 {
7         printf("Args: %d %f %s\n", first, second, third);
8         return 0;
9 }
10
11 int main(void)
12 {
13         a(42, 42.42, "What is 6 times 9?\n");
14         return 0;
15 }