8 lines
87 B
C
8 lines
87 B
C
#include "path1.h"
|
|
#include "path2.h"
|
|
|
|
int path1(int x)
|
|
{
|
|
return path2(x + 1);
|
|
}
|
|
|