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