00001 00002 #include <dlfcn.h> 00003 00004 /* this flag is part of Unix98: */ 00005 #ifndef RTLD_LOCAL 00006 #define RTLD_LOCAL 0 00007 #endif 00008 00009 /* this ensures global symbols are not used by dlopen()ed library, but is 00010 unfortunately only available on Solaris: */ 00011 #ifndef RTLD_GROUP 00012 #define RTLD_GROUP 0 00013 #endif 00014