1 char mod7_data; 2 3 void mod7_function(void (* f)(void))4 mod7_function (void (*f) (void)) 5 { 6 /* Make sure this is not a tail call and unwind information is 7 therefore needed. */ 8 f (); 9 f (); 10 } 11