OpenGrok
Cross Reference: foo5.C
xref
: /
ndk
/
tests
/
build
/
cpp-extensions
/
jni
/
foo5.C
Home
|
History
|
Annotate
|
Download
|
only in
jni
1
namespace
cpp
{
2
3
extern
int
foo4
(
int
);
4
5
int
foo5
(
int
x) {
6
return
foo4
(x) +
5
;
7
}
8
9
}