summaryrefslogtreecommitdiff
path: root/os2/dlfcn.h
diff options
context:
space:
mode:
authorPerl 5 Porters <perl5-porters@africa.nicoh.com>1996-06-18 07:42:27 +0000
committerCharles Bailey <bailey@genetics.upenn.edu>1996-06-18 07:42:27 +0000
commit3432c71bbc822f6d0b5d96962313d374b438fa64 (patch)
tree4f6a28c5758716533c9a9831357e7ce3934bd097 /os2/dlfcn.h
parentc692d6706f16a6480546327c33c922f46f377826 (diff)
downloadperl-3432c71bbc822f6d0b5d96962313d374b438fa64.tar.gz
Prototypes for OS/2-specific emulation of dlopen routines
Diffstat (limited to 'os2/dlfcn.h')
-rw-r--r--os2/dlfcn.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/os2/dlfcn.h b/os2/dlfcn.h
new file mode 100644
index 0000000000..df2ea33d32
--- /dev/null
+++ b/os2/dlfcn.h
@@ -0,0 +1,6 @@
+void *dlopen(char *path, int mode);
+void *dlsym(void *handle, char *symbol);
+char *dlerror(void);
+void *dlopen(char *path, int mode);
+void *dlsym(void *handle, char *symbol);
+char *dlerror(void);