Home | History | Annotate | Download | only in bar
      1 #include "bar.h"
      2 #include "foo.h"
      3 
      4 int  bar(int  x)
      5 {
      6     return foo(x)-1;
      7 }
      8