mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 20:47:45 +00:00
LibC: Stub out dlfcn
This commit is contained in:
parent
14a202f011
commit
5b3c4afff2
3 changed files with 35 additions and 1 deletions
22
LibC/dlfcn.cpp
Normal file
22
LibC/dlfcn.cpp
Normal file
|
@ -0,0 +1,22 @@
|
|||
#include "dlfcn.h"
|
||||
#include <assert.h>
|
||||
|
||||
int dlclose(void*)
|
||||
{
|
||||
ASSERT_NOT_REACHED();
|
||||
}
|
||||
|
||||
char *dlerror()
|
||||
{
|
||||
ASSERT_NOT_REACHED();
|
||||
}
|
||||
|
||||
void *dlopen(const char*, int)
|
||||
{
|
||||
ASSERT_NOT_REACHED();
|
||||
}
|
||||
|
||||
void *dlsym(void*, const char*)
|
||||
{
|
||||
ASSERT_NOT_REACHED();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue