diff options
| author | dgp@users.sourceforge.net <dgp> | 2005-05-13 17:11:53 (GMT) |
|---|---|---|
| committer | dgp@users.sourceforge.net <dgp> | 2005-05-13 17:11:53 (GMT) |
| commit | ae0bc13ded4c11fb1ea81658f0b9089c53bb802b (patch) | |
| tree | ae8da2367e5f5cfc4f51017e1248fdb9d95b0525 /generic/tclBinary.c | |
| parent | 0f7fcdd54b8a451ac954703fe76e60e6924d0d1a (diff) | |
| download | tcl-ae0bc13ded4c11fb1ea81658f0b9089c53bb802b.zip tcl-ae0bc13ded4c11fb1ea81658f0b9089c53bb802b.tar.gz tcl-ae0bc13ded4c11fb1ea81658f0b9089c53bb802b.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 |
