Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git] / sdcc / support / regression / qct / 0074-undef.c
blobac870e81d88856a4a8ede5c38488f5eb1785216f
2 #define X 1
3 #undef X
5 #ifdef X
6 FAIL
7 #endif
9 int
10 main()
12 return 0;