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