Turn on a implicit-function-declaration warning by default.
[tinycc.git] / tests / tests2 / 67_macro_concat.c
blobc580d3a6445aa05a3352ddcb6b3dde1d1c4e704c
1 #include <stdio.h>
3 #define P(A,B) A ## B ; bob
4 #define Q(A,B) A ## B+
6 int main(void)
8 int bob, jim = 21;
9 bob = P(jim,) *= 2;
10 printf("jim: %d, bob: %d\n", jim, bob);
11 jim = 60 Q(+,)3;
12 printf("jim: %d\n", jim);
13 return 0;