Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git] / sdcc / support / regression / qct / 0091-fptr.c
blobab6b5eff55836cc9c706e25424932087db8366db
2 int
3 zero()
5 return 0;
8 struct S
10 int (*zerofunc)();
11 } s = { &zero };
13 struct S *
14 anon()
16 return &s;
19 typedef struct S * (*fty)();
21 fty
22 go()
24 return &anon;
27 int
28 main()
30 return go()()->zerofunc();