Files
android_development/pdk/ndk/samples/sample/use_hellolibrary.c
The Android Open Source Project 52d4c30ca5 auto import from //depot/cupcake/@135843
2009-03-03 19:29:09 -08:00

10 lines
172 B
C

/* 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;
}