diff options
author | Kevin B Kenny <kennykb@acm.org> | 2005-12-27 20:14:08 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2005-12-27 20:14:08 (GMT) |
commit | 872e88fa4a341e40d152513ef5eca12fc1796fc4 (patch) | |
tree | 6ac1b304e947d621734475db91e19db47d68c048 /generic/tclExecute.c | |
parent | bfcaf58680879434db61618ae08073a85cf3379a (diff) | |
download | tcl-872e88fa4a341e40d152513ef5eca12fc1796fc4.zip tcl-872e88fa4a341e40d152513ef5eca12fc1796fc4.tar.gz tcl-872e88fa4a341e40d152513ef5eca12fc1796fc4.tar.bz2 |
Export Tcl_InitBignumFromDouble
Diffstat (limited to 'generic/tclExecute.c')
-rw-r--r-- | generic/tclExecute.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclExecute.c b/generic/tclExecute.c index f4cc090..6fb49ec 100644 --- a/generic/tclExecute.c +++ b/generic/tclExecute.c @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclExecute.c,v 1.224 2005/12/18 22:41:19 dkf Exp $ + * RCS: @(#) $Id: tclExecute.c,v 1.225 2005/12/27 20:14:08 kennykb Exp $ */ #include "tclInt.h" @@ -3643,7 +3643,7 @@ TclExecuteByteCode( mp_clear(&big2); goto doubleCompare; } - TclInitBignumFromDouble(NULL, d1, &big1); + Tcl_InitBignumFromDouble(NULL, d1, &big1); goto bigCompare; } break; @@ -3680,7 +3680,7 @@ TclExecuteByteCode( mp_clear(&big1); goto doubleCompare; } - TclInitBignumFromDouble(NULL, d2, &big2); + Tcl_InitBignumFromDouble(NULL, d2, &big2); goto bigCompare; case TCL_NUMBER_BIG: if (Tcl_IsShared(value2Ptr)) { |