diff options
Diffstat (limited to 'LibC/dlfcn.cpp')
-rw-r--r-- | LibC/dlfcn.cpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/LibC/dlfcn.cpp b/LibC/dlfcn.cpp new file mode 100644 index 0000000000..e654626d83 --- /dev/null +++ b/LibC/dlfcn.cpp @@ -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(); +} |