Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git] / sdcc / support / regression / qct / 0031-relop.c
blob643d130f467c0f41d53186c4b44189d97834ff76
2 int
3 f()
5 return 100;
8 int
9 main()
11 if (f() > 1000)
12 return 1;
13 if (f() >= 1000)
14 return 1;
15 if (1000 < f())
16 return 1;
17 if (1000 <= f())
18 return 1;
19 if (1000 == f())
20 return 1;
21 if (100 != f())
22 return 1;
23 return 0;