1 2 3 4 5 6 7 8 9 10
extern void foo1 (void); extern void foo2 (void); int main (void) { foo1 (); foo2 (); return 0; }