summaryrefslogtreecommitdiff
path: root/src/dlfcn/_dlfcn.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/dlfcn/_dlfcn.h')
-rw-r--r--src/dlfcn/_dlfcn.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/dlfcn/_dlfcn.h b/src/dlfcn/_dlfcn.h
new file mode 100644
index 00000000..fd5e30d0
--- /dev/null
+++ b/src/dlfcn/_dlfcn.h
@@ -0,0 +1,12 @@
+#ifndef ___DLFCN_H__
+#define ___DLFCN_H__
+
+#include <stddef.h>
+
+struct dlhandle {
+ void *base;
+ size_t size;
+ int fd;
+};
+
+#endif