summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/sys/ldso.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/sys/ldso.h b/include/sys/ldso.h
new file mode 100644
index 0000000..8013b6a
--- /dev/null
+++ b/include/sys/ldso.h
@@ -0,0 +1,15 @@
+#ifndef _SYS_LDSO_H
+#define _SYS_LDSO_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+void * __dldopen(int, int);
+void * __dlsopen(const char *, int);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif