diff options
author | dgp <dgp@users.sourceforge.net> | 2005-05-13 17:11:53 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2005-05-13 17:11:53 (GMT) |
commit | 78f7312e8ca860aba948e29dd9c454285ffdae7c (patch) | |
tree | ae8da2367e5f5cfc4f51017e1248fdb9d95b0525 /generic/tclBinary.c | |
parent | 440ee6251d8d7ba01d8bc5f4b013d9488baebe58 (diff) | |
download | tcl-78f7312e8ca860aba948e29dd9c454285ffdae7c.zip tcl-78f7312e8ca860aba948e29dd9c454285ffdae7c.tar.gz tcl-78f7312e8ca860aba948e29dd9c454285ffdae7c.tar.bz2 |
* generic/tclBasic.c: Dropped the TCL_NO_MATH configuration.
* generic/tclBinary.c: It's believed this has not been working
* generic/tclExecute.c: in a long time. Tcl needs math.h.
* unix/Makefile.in: [RFE 1200680].
Diffstat (limited to 'generic/tclBinary.c')
-rw-r--r-- | generic/tclBinary.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/generic/tclBinary.c b/generic/tclBinary.c index fa75841..bb370e0 100644 --- a/generic/tclBinary.c +++ b/generic/tclBinary.c @@ -10,16 +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: tclBinary.c,v 1.23 2005/05/10 18:54:31 kennykb Exp $ + * RCS: @(#) $Id: tclBinary.c,v 1.24 2005/05/13 17:11:59 dgp Exp $ */ #include "tclInt.h" -#ifdef TCL_NO_MATH -#define fabs(x) (x<0 ? -x : x) -#else #include <math.h> -#endif /* * The following constants are used by GetFormatSpec to indicate various |