Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git] / sdcc / support / regression / qct / 0009-expr.c
blobf9a3509fd3e4bc497ea5a91d8355142e93720905
2 int
3 main()
5 int x;
7 x = 1;
8 x = x * 10;
9 x = x / 2;
10 x = x % 3;
11 return x - 2;