Sign in
android
/
platform
/
development
/
f44d1b0
/
.
/
pdk
/
pndk
/
samples
/
sample
/
use_hellolibrary.c
blob: e32a364c43a6ce29f74501a4d241733a55624675 [
file
] [
log
] [
blame
]
/* use_hellolibrary.c -- used to show how to link to the hellolibrary */
int
hellolibrary
(
char
*
msg
);
int
main
()
{
hellolibrary
(
"Hello from the NDK.\n"
);
return
0
;
}