• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include "path1.h"
2 #include "path2.h"
3 
path1(int x)4 int  path1(int x)
5 {
6     return path2(x + 1);
7 }
8 
9