OpenGrok
Cross Reference: main.c
xref
: /
ndk
/
tests
/
build
/
prebuilt-copy
/
jni
/
main.c
Home
|
History
|
Annotate
|
Download
|
only in
jni
1
extern
int
foo
(
int
);
2
extern
int
bar
(
int
);
3
4
int
main
(
void
) {
5
return
foo
(
bar
(
10
));
6
}
7