Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git] / sdcc / support / regression / qct / 0105-ppcast.c
blob9fc1478b07c33277fa9accf693328b364209374d
2 int
3 main()
5 int x;
6 void *foo;
7 void **bar;
9 x = 0;
11 foo = (void*)&x;
12 bar = &foo;
14 return **(int**)bar;