Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git] / sdcc / support / regression / qct / 0077-defined.c
blob88fb17c5516e7e370159afcd96ea54005b8e19d7
2 #if defined X
4 #endif
6 #if defined(X)
8 #endif
10 #if X
12 #endif
14 #define X 0
16 #if X
18 #endif
20 #if defined(X)
21 int x = 0;
22 #endif
24 #undef X
25 #define X 1
27 #if X
28 int
29 main()
31 return 0;
33 #endif