1 extern void b_function (void);
2 extern void c_function (void);
3 
4 void
b_function(void)5 b_function (void)
6 {
7   c_function();
8 }
9