diff options
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tcl.h | 19 | ||||
-rw-r--r-- | generic/tclInt.h | 3 |
2 files changed, 12 insertions, 10 deletions
diff --git a/generic/tcl.h b/generic/tcl.h index 98f90c9..a38b9e7 100644 --- a/generic/tcl.h +++ b/generic/tcl.h @@ -13,7 +13,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.h,v 1.254.2.14 2010/01/29 09:38:48 nijtmans Exp $ + * RCS: @(#) $Id: tcl.h,v 1.254.2.15 2010/07/17 07:42:46 nijtmans Exp $ */ #ifndef _TCL @@ -860,16 +860,17 @@ typedef struct Tcl_CallFrame { Tcl_Namespace *nsPtr; int dummy1; int dummy2; - char *dummy3; - char *dummy4; - char *dummy5; + VOID *dummy3; + VOID *dummy4; + VOID *dummy5; int dummy6; - char *dummy7; - char *dummy8; + VOID *dummy7; + VOID *dummy8; int dummy9; - char *dummy10; - char *dummy11; - char *dummy12; + VOID *dummy10; + VOID *dummy11; + VOID *dummy12; + VOID *dummy13; } Tcl_CallFrame; /* diff --git a/generic/tclInt.h b/generic/tclInt.h index 7e49ad0..8efd344 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -13,7 +13,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclInt.h,v 1.362.2.12 2010/05/25 10:37:18 nijtmans Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.362.2.13 2010/07/17 07:42:44 nijtmans Exp $ */ #ifndef _TCLINT @@ -1041,6 +1041,7 @@ typedef struct CallFrame { * meaning of the value is, which we do not * specify. */ LocalCache *localCachePtr; + VOID *dummy13; } CallFrame; #define FRAME_IS_PROC 0x1 |