/*********************************************************************/ /* hello.c */ /* */ /* Sample function to test dynamic library loading. */ /* Doesn't do much...intentionally. :-) */ /* */ /*********************************************************************/ #include void hello(int *a) { printf("hello: incoming a=%d. ", *a); *a = *a * 5; printf("set a=%d \n", *a); return; }