Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git] / sdcc / support / regression / qct / 0073-ifndef.c
blob5636dcda86853bd5a7ee0b90faee6fbb9610b6fb
3 #ifndef DEF
4 int x = 0;
5 #endif
7 #define DEF
9 #ifndef DEF
11 #endif
13 int
14 main()
16 return x;