1 2 3 4 5 6 7 8 9 10 11 12 13
extern int bar (void); int baz (void) { return -42; } int xyzzy (void) { return 10 + bar (); }