1 extern void external_symbol(void);
2 extern void bar(void);
3 
foo(void)4 void foo(void) {
5   external_symbol();
6   bar();
7 }
8