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