diff options
author | Ilya Zakharevich <ilya@math.berkeley.edu> | 2001-06-28 12:03:14 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-06-28 19:10:54 +0000 |
commit | 35bc1fdc44cabda9b94bf3b2cbffe0be67fef25d (patch) | |
tree | ce362683cbc25c281c69b49928a386e14df2dd92 /os2/dlfcn.h | |
parent | 531b886104fed3302a6d671985aba5e2f6420dd5 (diff) | |
download | perl-35bc1fdc44cabda9b94bf3b2cbffe0be67fef25d.tar.gz |
OS/2 improvements
Message-ID: <20010628160314.A17906@math.ohio-state.edu>
p4raw-id: //depot/perl@11010
Diffstat (limited to 'os2/dlfcn.h')
-rw-r--r-- | os2/dlfcn.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/os2/dlfcn.h b/os2/dlfcn.h index c2feee6000..80e5aac52e 100644 --- a/os2/dlfcn.h +++ b/os2/dlfcn.h @@ -1,4 +1,4 @@ -void *dlopen(char *path, int mode); -void *dlsym(void *handle, char *symbol); +void *dlopen(const char *path, int mode); +void *dlsym(void *handle, const char *symbol); char *dlerror(void); int dlclose(void *handle); |