summaryrefslogtreecommitdiffstats
path: root/generic/tcl.decls
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 /generic/tcl.decls
parentc910444de34c20cbd42f3e8dd2dfbcebf4dfb9eb (diff)
downloadtcl-97e32cf4f7b1f10c946538135b1b34e5bcbf672b.zip
tcl-97e32cf4f7b1f10c946538135b1b34e5bcbf672b.tar.gz
tcl-97e32cf4f7b1f10c946538135b1b34e5bcbf672b.tar.bz2
VOID -> void
Diffstat (limited to 'generic/tcl.decls')
-rw-r--r--generic/tcl.decls6
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tcl.decls b/generic/tcl.decls
index c97331b..ffa6eba 100644
--- a/generic/tcl.decls
+++ b/generic/tcl.decls
@@ -12,7 +12,7 @@
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
-# RCS: @(#) $Id: tcl.decls,v 1.163 2008/12/18 01:14:16 ferrieux Exp $
+# RCS: @(#) $Id: tcl.decls,v 1.164 2008/12/18 06:40:02 nijtmans Exp $
library tcl
@@ -1096,11 +1096,11 @@ declare 303 generic {
}
declare 304 generic {
int Tcl_GetIndexFromObjStruct(Tcl_Interp *interp, Tcl_Obj *objPtr,
- const VOID *tablePtr, int offset, const char *msg, int flags,
+ const void *tablePtr, int offset, const char *msg, int flags,
int *indexPtr)
}
declare 305 generic {
- VOID *Tcl_GetThreadData(Tcl_ThreadDataKey *keyPtr, int size)
+ void *Tcl_GetThreadData(Tcl_ThreadDataKey *keyPtr, int size)
}
declare 306 generic {
Tcl_Obj *Tcl_GetVar2Ex(Tcl_Interp *interp, const char *part1,