Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git] / sdcc / support / regression / qct / 0039-sizeof.c
blob86cbd6faa5ea0c2342590128f638f2acfe2bb33d
1 int
2 main()
4 int x;
5 if((sizeof (int) - 4))
6 return 1;
7 if((sizeof (&x) - 8))
8 return 1;
9 return 0;