1 #include "bar.h"
2 
3 #include "foo.h"
4 
bar(int x)5 int bar(int x) {
6   return foo2(x) * 3;
7 }
8