Files
cleonos/cleonos/c/include/dlfcn.h

9 lines
184 B
C
Raw Normal View History

#ifndef CLEONOS_LIBC_DLFCN_H
#define CLEONOS_LIBC_DLFCN_H
void *dlopen(const char *path, int flags);
void *dlsym(void *handle, const char *symbol);
int dlclose(void *handle);
#endif