diff options
author | dgp <dgp@users.sourceforge.net> | 2005-07-05 18:15:41 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2005-07-05 18:15:41 (GMT) |
commit | 54bafc704cf48ffee9929b86352c127bfc9c024d (patch) | |
tree | 7ee4e1ed918eafe78497e6a04d4a32ed2c90a911 /generic/tclIntDecls.h | |
parent | 1f35b60c45319b66403716359b926d67f7d9b328 (diff) | |
download | tcl-54bafc704cf48ffee9929b86352c127bfc9c024d.zip tcl-54bafc704cf48ffee9929b86352c127bfc9c024d.tar.gz tcl-54bafc704cf48ffee9929b86352c127bfc9c024d.tar.bz2 |
* generic/tclUtil.c: Converted TclFormatInt() into a macro.
* generic/tclInt.decls: [RFE 1194015]
* generic/tclInt.h:
* generic/tclIntDecls.h: make genstubs
* generic/tclStubInit.c:
Diffstat (limited to 'generic/tclIntDecls.h')
-rw-r--r-- | generic/tclIntDecls.h | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/generic/tclIntDecls.h b/generic/tclIntDecls.h index 3e5827e..b379778 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.80 2005/05/14 20:46:45 das Exp $ + * RCS: @(#) $Id: tclIntDecls.h,v 1.81 2005/07/05 18:15:56 dgp Exp $ */ #ifndef _TCLINTDECLS @@ -170,11 +170,7 @@ EXTERN int TclFindElement _ANSI_ARGS_((Tcl_Interp * interp, EXTERN Proc * TclFindProc _ANSI_ARGS_((Interp * iPtr, CONST char * procName)); #endif -#ifndef TclFormatInt_TCL_DECLARED -#define TclFormatInt_TCL_DECLARED -/* 24 */ -EXTERN int TclFormatInt _ANSI_ARGS_((char * buffer, long n)); -#endif +/* Slot 24 is reserved */ #ifndef TclFreePackageInfo_TCL_DECLARED #define TclFreePackageInfo_TCL_DECLARED /* 25 */ @@ -1200,7 +1196,7 @@ typedef struct TclIntStubs { void *reserved21; int (*tclFindElement) _ANSI_ARGS_((Tcl_Interp * interp, CONST char * listStr, int listLength, CONST char ** elementPtr, CONST char ** nextPtr, int * sizePtr, int * bracePtr)); /* 22 */ Proc * (*tclFindProc) _ANSI_ARGS_((Interp * iPtr, CONST char * procName)); /* 23 */ - int (*tclFormatInt) _ANSI_ARGS_((char * buffer, long n)); /* 24 */ + void *reserved24; void (*tclFreePackageInfo) _ANSI_ARGS_((Interp * iPtr)); /* 25 */ void *reserved26; void *reserved27; @@ -1507,10 +1503,7 @@ extern TclIntStubs *tclIntStubsPtr; #define TclFindProc \ (tclIntStubsPtr->tclFindProc) /* 23 */ #endif -#ifndef TclFormatInt -#define TclFormatInt \ - (tclIntStubsPtr->tclFormatInt) /* 24 */ -#endif +/* Slot 24 is reserved */ #ifndef TclFreePackageInfo #define TclFreePackageInfo \ (tclIntStubsPtr->tclFreePackageInfo) /* 25 */ |