Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git] / sdcc / support / regression / qct / 0092-arrayinit.c
blob21f7118a98c7ac16ed07a39680cb885e94243ff9
2 int a[3] = {0, 1, 2};
4 int
5 main()
7 if (a[0] != 0)
8 return 1;
9 if (a[1] != 1)
10 return 2;
11 if (a[2] != 2)
12 return 3;
14 return 0;