summaryrefslogtreecommitdiffstats
path: root/generic/tclStrToD.c
diff options
context:
space:
mode:
authorKevin B Kenny <kennykb@acm.org>2005-12-27 20:14:08 (GMT)
committerKevin B Kenny <kennykb@acm.org>2005-12-27 20:14:08 (GMT)
commit872e88fa4a341e40d152513ef5eca12fc1796fc4 (patch)
tree6ac1b304e947d621734475db91e19db47d68c048 /generic/tclStrToD.c
parentbfcaf58680879434db61618ae08073a85cf3379a (diff)
downloadtcl-872e88fa4a341e40d152513ef5eca12fc1796fc4.zip
tcl-872e88fa4a341e40d152513ef5eca12fc1796fc4.tar.gz
tcl-872e88fa4a341e40d152513ef5eca12fc1796fc4.tar.bz2
Export Tcl_InitBignumFromDouble
Diffstat (limited to 'generic/tclStrToD.c')
-rwxr-xr-xgeneric/tclStrToD.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/generic/tclStrToD.c b/generic/tclStrToD.c
index 9fe25d0..7122d33 100755
--- a/generic/tclStrToD.c
+++ b/generic/tclStrToD.c
@@ -14,7 +14,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclStrToD.c,v 1.18 2005/12/19 19:03:17 dgp Exp $
+ * RCS: @(#) $Id: tclStrToD.c,v 1.19 2005/12/27 20:14:09 kennykb Exp $
*
*----------------------------------------------------------------------
*/
@@ -2214,7 +2214,7 @@ TclFinalizeDoubleConversion()
/*
*----------------------------------------------------------------------
*
- * TclInitBignumFromDouble --
+ * Tcl_InitBignumFromDouble --
*
* Extracts the integer part of a double and converts it to an arbitrary
* precision integer.
@@ -2223,14 +2223,14 @@ TclFinalizeDoubleConversion()
* None.
*
* Side effects:
- * Initializes the bignum supplied, and stores the converted number * in
- * it.
+ * Initializes the bignum supplied, and stores the converted number
+ * in it.
*
*----------------------------------------------------------------------
*/
int
-TclInitBignumFromDouble(
+Tcl_InitBignumFromDouble(
Tcl_Interp *interp, /* For error message */
double d, /* Number to convert */
mp_int *b) /* Place to store the result */