7 #include "utils/dynamic_loader.h"
9 #define pg_dlopen(f) dlopen((f), 1)
10 #define pg_dlsym dlsym
11 #define pg_dlclose dlclose
12 #define pg_dlerror dlerror
15 int dlclose(void *handle
);
16 void *dlsym(void *handle
, const char *symbol
);
17 void *dlopen(const char *path
, int mode
);
19 #endif /* PORT_PROTOS_H */