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