android_mt6572_jiabo/external/fio/os/windows/posix/include/dlfcn.h
2025-09-05 16:56:03 +08:00

11 lines
229 B
C

#ifndef DLFCN_H
#define DLFCN_H
#define RTLD_LAZY 1
void *dlopen(const char *file, int mode);
int dlclose(void *handle);
void *dlsym(void *restrict handle, const char *restrict name);
char *dlerror(void);
#endif /* DLFCN_H */