1 2 3 4 5 6 7
extern void d (void); void (*foo (void)) (float) { void (*(*x) (void)) (float) = d; return (*x) (); }