summaryrefslogtreecommitdiff
path: root/os/windows/posix/include/dlfcn.h
blob: 57f293033bdc3f8a8345282be740fbdfd0562c8b (plain)
1
2
3
4
5
6
7
8
9
10
11
#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 */