1 extern void a1_function (void);
2 extern void a2_function (void);
3 
a2_function(void)4 void a2_function (void)
5 {
6   a1_function ();
7 }
8