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