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/tcl.decls | |
parent | bfcaf58680879434db61618ae08073a85cf3379a (diff) | |
download | tcl-872e88fa4a341e40d152513ef5eca12fc1796fc4.zip tcl-872e88fa4a341e40d152513ef5eca12fc1796fc4.tar.gz tcl-872e88fa4a341e40d152513ef5eca12fc1796fc4.tar.bz2 |
Export Tcl_InitBignumFromDouble
Diffstat (limited to 'generic/tcl.decls')
-rw-r--r-- | generic/tcl.decls | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/generic/tcl.decls b/generic/tcl.decls index 3549ccc..410538d 100644 --- a/generic/tcl.decls +++ b/generic/tcl.decls @@ -11,7 +11,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.decls,v 1.117 2005/12/27 17:39:01 kennykb Exp $ +# RCS: @(#) $Id: tcl.decls,v 1.118 2005/12/27 20:14:08 kennykb Exp $ library tcl @@ -2030,6 +2030,13 @@ declare 564 generic { declare 565 generic { void Tcl_GetChannelError (Tcl_Channel chan, Tcl_Obj** msg) } + +# Additional conversion functions for bignum support + +declare 566 generic { + int Tcl_InitBignumFromDouble(Tcl_Interp* interp, double initval, + mp_int *toInit) +} ############################################################################## |