1 /* use_hellolibrary.c -- used to show how to link to the hellolibrary */ 2 3 int hellolibrary(char *msg); 4 main()5int main() 6 { 7 hellolibrary("Hello from the NDK.\n"); 8 return 0; 9 } 10
1 /* use_hellolibrary.c -- used to show how to link to the hellolibrary */ 2 3 int hellolibrary(char *msg); 4 main()5int main() 6 { 7 hellolibrary("Hello from the NDK.\n"); 8 return 0; 9 } 10