Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git] / sdcc / support / regression / qct / 0008-dowhilestmt.c
blobecde256d1d7e63605cac1bf4d07e7ad5464845ae
2 int
3 main()
5 int x;
7 x = 50;
8 do
9 x = x - 1;
10 while(x);
11 return x;