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