diff options
author | Kevin B Kenny <kennykb@acm.org> | 2005-12-27 17:39:01 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2005-12-27 17:39:01 (GMT) |
commit | 988dfef7f36424cf6008cd90ce865e7b62735f10 (patch) | |
tree | 136dd1f29ae13555c993c434fd909c75e4ef6393 /generic/tclDecls.h | |
parent | 18d6765361d9e2703b6f02c23d4edb0c79dffbf6 (diff) | |
download | tcl-988dfef7f36424cf6008cd90ce865e7b62735f10.zip tcl-988dfef7f36424cf6008cd90ce865e7b62735f10.tar.gz tcl-988dfef7f36424cf6008cd90ce865e7b62735f10.tar.bz2 |
Corrected bugs in tommath installation, improved tommath square root performance, patched around a [clock scan] issue with time zones
Diffstat (limited to 'generic/tclDecls.h')
-rw-r--r-- | generic/tclDecls.h | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/generic/tclDecls.h b/generic/tclDecls.h index 6851457..a4a8ec6 100644 --- a/generic/tclDecls.h +++ b/generic/tclDecls.h @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclDecls.h,v 1.118 2005/12/13 22:43:17 kennykb Exp $ + * RCS: @(#) $Id: tclDecls.h,v 1.119 2005/12/27 17:39:01 kennykb Exp $ */ #ifndef _TCLDECLS @@ -3527,13 +3527,6 @@ EXTERN void Tcl_SetChannelError _ANSI_ARGS_((Tcl_Channel chan, EXTERN void Tcl_GetChannelError _ANSI_ARGS_((Tcl_Channel chan, Tcl_Obj** msg)); #endif -#ifndef TclTomMathInitializeStubs_TCL_DECLARED -#define TclTomMathInitializeStubs_TCL_DECLARED -/* 566 */ -EXTERN const char* TclTomMathInitializeStubs _ANSI_ARGS_(( - Tcl_Interp* interp, CONST char* version, - int epoch, int revision)); -#endif typedef struct TclStubHooks { struct TclPlatStubs *tclPlatStubs; @@ -4141,7 +4134,6 @@ typedef struct TclStubs { void (*tcl_GetChannelErrorInterp) _ANSI_ARGS_((Tcl_Interp* interp, Tcl_Obj** msg)); /* 563 */ void (*tcl_SetChannelError) _ANSI_ARGS_((Tcl_Channel chan, Tcl_Obj* msg)); /* 564 */ void (*tcl_GetChannelError) _ANSI_ARGS_((Tcl_Channel chan, Tcl_Obj** msg)); /* 565 */ - const char* (*tclTomMathInitializeStubs) _ANSI_ARGS_((Tcl_Interp* interp, CONST char* version, int epoch, int revision)); /* 566 */ } TclStubs; #ifdef __cplusplus @@ -6446,10 +6438,6 @@ extern TclStubs *tclStubsPtr; #define Tcl_GetChannelError \ (tclStubsPtr->tcl_GetChannelError) /* 565 */ #endif -#ifndef TclTomMathInitializeStubs -#define TclTomMathInitializeStubs \ - (tclStubsPtr->tclTomMathInitializeStubs) /* 566 */ -#endif #endif /* defined(USE_TCL_STUBS) && !defined(USE_TCL_STUB_PROCS) */ |