Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git] / sdcc / support / regression / qct / 0007-forstmt.c
blob99466efee02bbc75c0dcbb026c1db19fbc50936d
2 int
3 main()
5 int x;
7 x = 1;
8 for(x = 10; x; x = x - 1)
10 if(x)
11 return 1;
12 x = 10;
13 for (;x;)
14 x = x - 1;
15 return x;