Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git] / sdcc / support / regression / qct / 0081-bug.c
blobad0af767ef632a0df5b99056c7a1df5875d7d93d
1 #define x(y) ((y) + 1)
3 int
4 main()
6 int x;
7 int y;
9 y = 0;
10 x = x(y);
12 if(x != 1)
13 return 1;
15 return 0;