Reformat switches for better readability.
[cparser] / preproctest / edgbug2.c
1 #define fool(x)    bar
2
3 int printf(const char *str, ...);
4
5 void barfool(void)
6 {
7         printf("Hello World\n");
8 }
9
10 int main(void)
11 {
12         /* If you preprocess this with EDG and then compile it, it gets invalid
13          * because EDG emits 2 identifiers directly behind each other (without
14          * space in between them) */
15         void (*func)(void) = fool(2)fool
16 ;
17         func();
18         return 0;
19 }