diff options
Diffstat (limited to 'generic/tclTomMathInterface.c')
-rw-r--r-- | generic/tclTomMathInterface.c | 31 |
1 files changed, 15 insertions, 16 deletions
diff --git a/generic/tclTomMathInterface.c b/generic/tclTomMathInterface.c index 65eddcf..48db8c3 100644 --- a/generic/tclTomMathInterface.c +++ b/generic/tclTomMathInterface.c @@ -10,15 +10,12 @@ * * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. - * - * RCS: @(#) $Id: tclTomMathInterface.c,v 1.6 2005/12/13 22:43:18 kennykb Exp $ */ #include "tclInt.h" #include "tommath.h" -#include <limits.h> -extern TclTomMathStubs tclTomMathStubs; +MODULE_SCOPE const TclTomMathStubs tclTomMathStubs; /* *---------------------------------------------------------------------- @@ -40,10 +37,12 @@ extern TclTomMathStubs tclTomMathStubs; int TclTommath_Init( - Tcl_Interp* interp /* Tcl interpreter */ -) { - if (Tcl_PkgProvideEx(interp, "tcl::tommath", TCL_VERSION, - (ClientData)&tclTomMathStubs) != TCL_OK) { + Tcl_Interp *interp) /* Tcl interpreter */ +{ + /* TIP #268: Full patchlevel instead of just major.minor */ + + if (Tcl_PkgProvideEx(interp, "tcl::tommath", TCL_PATCH_LEVEL, + &tclTomMathStubs) != TCL_OK) { return TCL_ERROR; } return TCL_OK; @@ -63,8 +62,8 @@ TclTommath_Init( *---------------------------------------------------------------------- */ -int -TclBN_epoch() +int +TclBN_epoch(void) { return TCLTOMMATH_EPOCH; } @@ -85,8 +84,8 @@ TclBN_epoch() *---------------------------------------------------------------------- */ -int -TclBN_revision() +int +TclBN_revision(void) { return TCLTOMMATH_REVISION; } @@ -112,7 +111,7 @@ extern void * TclBNAlloc( size_t x) { - return (void *) Tcl_Alloc((unsigned int) x); + return (void *) ckalloc((unsigned int) x); } /* @@ -136,7 +135,7 @@ TclBNRealloc( void *p, size_t s) { - return (void *) Tcl_Realloc((char *) p, (unsigned int) s); + return (void *) ckrealloc((char *) p, (unsigned int) s); } /* @@ -162,7 +161,7 @@ extern void TclBNFree( void *p) { - Tcl_Free((char *) p); + ckree((char *) p); } #endif @@ -189,7 +188,7 @@ TclBNInitBignumFromLong( { int status; unsigned long v; - mp_digit* p; + mp_digit *p; /* * Allocate enough memory to hold the largest possible long |