OpenGrok
Cross Reference: libbar.c
xref
: /
ndk
/
tests
/
build
/
multi-module-path
/
path2
/
bar
/
libbar.c
Home
|
History
|
Annotate
|
Download
|
only in
bar
1
#
include
"
bar.h
"
2
#
include
"
foo.h
"
3
4
int
bar
(
void
)
5
{
6
return
foo
()*
2
;
7
}
8