Fix Windows headers for IPv6
[fio.git] / os / windows / posix / include / dlfcn.h
1 #ifndef DLFCN_H
2 #define DLFCN_H
3
4 #define RTLD_LAZY 1
5
6 void *dlopen(const char *file, int mode);
7 int dlclose(void *handle);
8 void *dlsym(void *restrict handle, const char *restrict name);
9 char *dlerror(void);
10
11 #endif /* DLFCN_H */