aboutsummaryrefslogtreecommitdiff
path: root/system/include/dlfcn.h
blob: f3439c7021e1860a0ba795b1077392e7edc2f609 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
extern "C" {

#define RTLD_LAZY   1
#define RTLD_NOW    2
#define RTLD_GLOBAL 4
#define RTLD_LOCAL  8

void  *dlopen(const char *, int);
void  *dlsym(void *, const char *);
int    dlclose(void *);
char  *dlerror(void);

}