summaryrefslogtreecommitdiff
path: root/Libraries/LibC/dlfcn.cpp
blob: f4437b02728d52c795fce40e8df03129fdf1be1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include <assert.h>
#include <dlfcn.h>

extern "C" {

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();
}
}