1 2 3 4 5 6 7 8 9 10 11 12
#ifndef ___DLFCN_H__ #define ___DLFCN_H__ #include <stddef.h> struct dlhandle { void *base; size_t size; int fd; }; #endif