Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git] / sdcc / support / regression / qct / 0054-struct.c
blobdf418ebf50682a7be6d66fd325e57ffcd7b687e4
2 int
3 main()
5 struct T { int x; } s1;
6 s1.x = 1;
8 struct T { int y; } s2;
9 s2.y = 1;
10 if (s1.x - s2.y != 0)
11 return 1;
13 return 0;