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