1 #include "foo.h"
2 
3 #include "foo2.h"
4 
foo()5 int foo()
6 {
7   return 0;
8 }
9 
foo2()10 int foo2()
11 {
12   return 0;
13 }
14