Files
android_development/pdk/pndk/samples/sample/use_hellolibrary.c
2009-05-19 11:28:10 -07: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;
}