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