Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git] / sdcc / support / regression / qct / 0043-union.c
blobc43cff270b44713b47077d7b94755a7419d739c5
4 int
5 main()
7 union { int a; int b; } u;
8 u.a = 1;
9 u.b = 3;
11 if (u.a != 3 || u.b != 3)
12 return 1;
13 return 0;