1 2 3 4 5 6 7 8
extern int foo (void); extern int call_me (void); int call_me (void) { return foo () - 42; }