Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git] / sdcc / support / regression / qct / 0049-inits.c
blobeda8dcff5dcdfee8e126f2b8ae007a4fa84752b3
3 struct S {int a; int b;};
4 struct S s = { .b = 2, .a = 1};
6 int
7 main()
9 if(s.a != 1)
10 return 1;
11 if(s.b != 2)
12 return 2;
13 return 0;