mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 15:57:35 +00:00
LibC: Stub out dlfcn
This commit is contained in:
parent
14a202f011
commit
5b3c4afff2
3 changed files with 35 additions and 1 deletions
11
LibC/dlfcn.h
Normal file
11
LibC/dlfcn.h
Normal file
|
@ -0,0 +1,11 @@
|
|||
#pragma once
|
||||
|
||||
#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*);
|
Loading…
Add table
Add a link
Reference in a new issue