diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-03-03 16:21:34 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-03-03 16:21:34 +0000 |
commit | 403d6f8e894056e673725f16d00d471c48c44dd2 (patch) | |
tree | dd61fe365d6609a453e2d29568b78c3bb7da7649 /os2/dlfcn.h | |
parent | a4cf958aac2453eded53a4701d1bec205cf252eb (diff) | |
download | perl-403d6f8e894056e673725f16d00d471c48c44dd2.tar.gz |
OS/2 patches for dlclose() support (from Yitzchak Scott-Thoennes
<sthoenna@efn.org>)
p4raw-id: //depot/perl@5488
Diffstat (limited to 'os2/dlfcn.h')
-rw-r--r-- | os2/dlfcn.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/os2/dlfcn.h b/os2/dlfcn.h index c96f97f82d..c2feee6000 100644 --- a/os2/dlfcn.h +++ b/os2/dlfcn.h @@ -1,3 +1,4 @@ void *dlopen(char *path, int mode); void *dlsym(void *handle, char *symbol); char *dlerror(void); +int dlclose(void *handle); |