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