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/tcl.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/tcl.h')
-rw-r--r-- | generic/tcl.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/generic/tcl.h b/generic/tcl.h index b446591..fb20564 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.209 2005/12/08 20:20:11 hobbs Exp $ + * RCS: @(#) $Id: tcl.h,v 1.210 2005/12/27 17:39:01 kennykb Exp $ */ #ifndef _TCL @@ -2385,6 +2385,8 @@ typedef unsigned long mp_digit; EXTERN CONST char * Tcl_InitStubs _ANSI_ARGS_((Tcl_Interp *interp, CONST char *version, int exact)); +EXTERN CONST char* TclTomMathInitializeStubs(Tcl_Interp* interp, + CONST char* version, int epoch, int revision); #ifndef USE_TCL_STUBS @@ -2397,6 +2399,11 @@ EXTERN CONST char * Tcl_InitStubs _ANSI_ARGS_((Tcl_Interp *interp, #endif + /* + * TODO - tommath stubs export goes here! + */ + + /* * Public functions that are not accessible via the stubs table. */ |