ladybird/LibC/dlfcn.h

18 lines
251 B
C
Raw Normal View History

2019-05-23 16:32:30 +03:00
#pragma once
#include <sys/cdefs.h>
__BEGIN_DECLS
2019-05-23 16:32:30 +03:00
#define RTLD_LAZY 1
#define RTLD_NOW 2
#define RTLD_GLOBAL 3
#define RTLD_LOCAL 4
int dlclose(void*);
char* dlerror();
void* dlopen(const char*, int);
void* dlsym(void*, const char*);
__END_DECLS