1#pragma prototyped 2/* 3 * -lshell provides dl(3) if the local system is non-de-facto 4 */ 5 6#ifndef RTLD_NOW 7# define RTLD_NOW 1 8#endif 9 10#ifndef RTLD_GLOBAL 11# define RTLD_GLOBAL 0 12#endif 13 14extern void* dlopen(const char*,int); 15extern void* dlsym(void*, const char*); 16extern char* dlerror(void); 17 18