Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git] / sdcc / support / regression / qct / 0065-ifdef.c
blobbe3665e6107132e7052575abcb690d2853287342
2 #ifdef FOO
3 XXX
4 #ifdef BAR
5 XXX
6 #endif
7 XXX
8 #endif
10 #define FOO 1
12 #ifdef FOO
14 #ifdef FOO
15 int x = 0;
16 #endif
18 int
19 main()
21 return x;
23 #endif