diff options
author | nijtmans <nijtmans> | 2008-12-18 06:40:02 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2008-12-18 06:40:02 (GMT) |
commit | 97e32cf4f7b1f10c946538135b1b34e5bcbf672b (patch) | |
tree | 61208a6795765a6e20abd947f70e17891696d7ee /generic/tclIntDecls.h | |
parent | c910444de34c20cbd42f3e8dd2dfbcebf4dfb9eb (diff) | |
download | tcl-97e32cf4f7b1f10c946538135b1b34e5bcbf672b.zip tcl-97e32cf4f7b1f10c946538135b1b34e5bcbf672b.tar.gz tcl-97e32cf4f7b1f10c946538135b1b34e5bcbf672b.tar.bz2 |
VOID -> void
Diffstat (limited to 'generic/tclIntDecls.h')
-rw-r--r-- | generic/tclIntDecls.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclIntDecls.h b/generic/tclIntDecls.h index 6367064..b4adc16 100644 --- a/generic/tclIntDecls.h +++ b/generic/tclIntDecls.h @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclIntDecls.h,v 1.128 2008/12/15 15:48:33 dgp Exp $ + * RCS: @(#) $Id: tclIntDecls.h,v 1.129 2008/12/18 06:40:02 nijtmans Exp $ */ #ifndef _TCLINTDECLS @@ -689,7 +689,7 @@ EXTERN CONST86 struct AuxDataType * TclGetAuxDataType (const char * typeName); #ifndef TclHandleCreate_TCL_DECLARED #define TclHandleCreate_TCL_DECLARED /* 146 */ -EXTERN TclHandle TclHandleCreate (VOID * ptr); +EXTERN TclHandle TclHandleCreate (void * ptr); #endif #ifndef TclHandleFree_TCL_DECLARED #define TclHandleFree_TCL_DECLARED @@ -1257,7 +1257,7 @@ typedef struct TclIntStubs { int (*tclAddLiteralObj) (struct CompileEnv * envPtr, Tcl_Obj * objPtr, LiteralEntry ** litPtrPtr); /* 143 */ void (*tclHideLiteral) (Tcl_Interp * interp, struct CompileEnv * envPtr, int index); /* 144 */ CONST86 struct AuxDataType * (*tclGetAuxDataType) (const char * typeName); /* 145 */ - TclHandle (*tclHandleCreate) (VOID * ptr); /* 146 */ + TclHandle (*tclHandleCreate) (void * ptr); /* 146 */ void (*tclHandleFree) (TclHandle handle); /* 147 */ TclHandle (*tclHandlePreserve) (TclHandle handle); /* 148 */ void (*tclHandleRelease) (TclHandle handle); /* 149 */ |