Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git] / sdcc / support / regression / qct / 0079-cond.c
blob1b1a3292cf677432e1c9033d54f6a0ae88736d3d
2 int
3 main()
5 if(0 ? 1 : 0)
6 return 1;
7 if(1 ? 0 : 1)
8 return 2;
9 return 0;