From: Perl 5 Porters Date: Tue, 18 Jun 1996 07:42:27 +0000 (+0000) Subject: Prototypes for OS/2-specific emulation of dlopen routines X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=3432c71bbc822f6d0b5d96962313d374b438fa64;p=p5sagit%2Fp5-mst-13.2.git Prototypes for OS/2-specific emulation of dlopen routines --- diff --git a/os2/dlfcn.h b/os2/dlfcn.h new file mode 100644 index 0000000..df2ea33 --- /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);