summaryrefslogtreecommitdiff
path: root/src/ldso/dlopen.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ldso/dlopen.c')
-rw-r--r--src/ldso/dlopen.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/ldso/dlopen.c b/src/ldso/dlopen.c
new file mode 100644
index 00000000..dcdb4398
--- /dev/null
+++ b/src/ldso/dlopen.c
@@ -0,0 +1,13 @@
+#include <dlfcn.h>
+#include "libc.h"
+
+__attribute__((__visibility__("hidden")))
+void __dl_seterr(const char *, ...);
+
+static void *stub_dlopen(const char *file, int mode)
+{
+ __dl_seterr("Dynamic loading not supported");
+ return 0;
+}
+
+weak_alias(stub_dlopen, dlopen);