Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git] / sdcc / support / regression / qct / 0050-inits.c
blob0206352e334ba5853fff61ec35b34876bd3ae34a
3 int x = 10;
5 struct S {int a; int *p;};
6 struct S s = { .p = &x, .a = 1};
8 int
9 main()
11 if(s.a != 1)
12 return 1;
13 if(*s.p != 10)
14 return 2;
15 return 0;