OpenGrok
Cross Reference: path1.c
xref
: /
ndk
/
tests
/
build
/
import-install
/
path1
/
path1.c
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