1#include <stdio.h> 2#include <dlfcn.h> 3void sayhello() 4{ 5 printf ("hello world!\n"); 6} 7 8void* call_dlopen(const char* name) 9{ 10 return dlopen(name, RTLD_NOW); 11}