Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git] / sdcc / support / regression / qct / 0088-short.c
blob4dce16f47627ef3a6814d61d0a9743eebcc2699e
2 int
3 main()
5 short x;
7 x = 0;
8 x = x + 1;
9 if (x != 1)
10 return 1;
11 return 0;