Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git] / sdcc / support / regression / qct / 0069-funclikemacro.c
blobf4f787ccbdaf4b6d9624db938dd873bd6a1ceeb4
1 #define A 3
2 #define FOO(X,Y,Z) X + Y + Z
3 #define SEMI ;
5 int
6 main()
8 if(FOO(1, 2, A) != 6)
9 return 1 SEMI
10 return FOO(0,0,0);