diff options
author | Perl 5 Porters <perl5-porters@africa.nicoh.com> | 1996-06-18 07:42:27 +0000 |
---|---|---|
committer | Charles Bailey <bailey@genetics.upenn.edu> | 1996-06-18 07:42:27 +0000 |
commit | 3432c71bbc822f6d0b5d96962313d374b438fa64 (patch) | |
tree | 4f6a28c5758716533c9a9831357e7ce3934bd097 /os2 | |
parent | c692d6706f16a6480546327c33c922f46f377826 (diff) | |
download | perl-3432c71bbc822f6d0b5d96962313d374b438fa64.tar.gz |
Prototypes for OS/2-specific emulation of dlopen routines
Diffstat (limited to 'os2')
-rw-r--r-- | os2/dlfcn.h | 6 |
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); |