1
Fork 0
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:
Robin Burchell 2019-05-23 15:32:30 +02:00 committed by Andreas Kling
parent 14a202f011
commit 5b3c4afff2
3 changed files with 35 additions and 1 deletions

11
LibC/dlfcn.h Normal file
View 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*);