1 /* These functions support the test case c_funloc_tests_3. */
10 int (*returnFunc(void))(int)
15 void callFunc(int(*func
)(int), int pass
, int compare
)
17 int result
= (*func
)(pass
);
20 printf("FAILED: Got %d, expected %d\n", result
, compare
);
24 printf("SUCCESS: Got %d, expected %d\n", result
, compare
);