Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git] / sdcc / support / regression / qct / 0089-fptr.c
blobe30edfa2e5a2b2b5b5a46e9493fb34baf02f4b59
2 struct S
4 int (*fptr)();
5 };
7 int
8 foo()
10 return 0;
13 int
14 main()
16 struct S v;
18 v.fptr = foo;
19 return v.fptr();