Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git] / sdcc / support / regression / qct / 0046-inits.c
blob8949f87b95209183ff82ff52c9cda42acb3f700f
2 int x = 5;
3 long y = 6;
4 int *p = &x;
6 int
7 main()
9 if (x != 5)
10 return 1;
11 if (y != 6)
12 return 2;
13 if (*p != 5)
14 return 3;
15 return 0;