summaryrefslogtreecommitdiffstats
path: root/compat
diff options
context:
space:
mode:
authornijtmans <nijtmans>2008-12-18 06:40:02 (GMT)
committernijtmans <nijtmans>2008-12-18 06:40:02 (GMT)
commit97e32cf4f7b1f10c946538135b1b34e5bcbf672b (patch)
tree61208a6795765a6e20abd947f70e17891696d7ee /compat
parentc910444de34c20cbd42f3e8dd2dfbcebf4dfb9eb (diff)
downloadtcl-97e32cf4f7b1f10c946538135b1b34e5bcbf672b.zip
tcl-97e32cf4f7b1f10c946538135b1b34e5bcbf672b.tar.gz
tcl-97e32cf4f7b1f10c946538135b1b34e5bcbf672b.tar.bz2
VOID -> void
Diffstat (limited to 'compat')
-rw-r--r--compat/dlfcn.h8
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);