diff options
Diffstat (limited to 'compat')
-rw-r--r-- | compat/dlfcn.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/compat/dlfcn.h b/compat/dlfcn.h index 03d878a..ef8ff0c 100644 --- a/compat/dlfcn.h +++ b/compat/dlfcn.h @@ -1,4 +1,4 @@ -/* +/* * dlfcn.h -- * * This file provides a replacement for the header file "dlfcn.h" @@ -17,7 +17,7 @@ * for any results of using the software, alterations are clearly marked * as such, and this notice is not modified. * - * RCS: @(#) $Id: dlfcn.h,v 1.3 2008/09/03 05:43:31 dgp Exp $ + * RCS: @(#) $Id: dlfcn.h,v 1.4 2008/12/18 06:40:03 nijtmans Exp $ */ /* @@ -53,8 +53,8 @@ struct dl_info { void (*fini) (void); }; -VOID *dlopen (const char *path, int mode); -VOID *dlsym (void *handle, const char *symbol); +void *dlopen (const char *path, int mode); +void *dlsym (void *handle, const char *symbol); char *dlerror (void); int dlclose (void *handle); |