#ifndef ULIBC_DLFCN_H
#define ULIBC_DLFCN_H
#define RTLD_LAZY 0x01
#define RTLD_NOW 0x02
#define RTLD_GLOBAL 0x100
#define RTLD_LOCAL 0x000
void* dlopen(const char* filename, int flags);
void* dlsym(void* handle, const char* symbol);
int dlclose(void* handle);
char* dlerror(void);
#endif