diff options
author | Kevin B Kenny <kennykb@acm.org> | 2001-05-31 23:45:44 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2001-05-31 23:45:44 (GMT) |
commit | f16a9d29ec4b0f401338397dee7f5d24f9acffb5 (patch) | |
tree | fdd7e6cc3e4c627755440c7f60e6ebe4311248fc /generic/tclMath.h | |
parent | 97464e6cba8eb0008cf2727c15718671992b913f (diff) | |
download | tcl-kennykb_tip_22_33_botched.zip tcl-kennykb_tip_22_33_botched.tar.gz tcl-kennykb_tip_22_33_botched.tar.bz2 |
Development branch for TIPs 22 and 33
kennykb_tip_22_33_botched
Diffstat (limited to 'generic/tclMath.h')
-rw-r--r-- | generic/tclMath.h | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/generic/tclMath.h b/generic/tclMath.h deleted file mode 100644 index ee1a02e..0000000 --- a/generic/tclMath.h +++ /dev/null @@ -1,27 +0,0 @@ -/* - * tclMath.h -- - * - * This file is necessary because of Metrowerks CodeWarrior Pro 1 - * on the Macintosh. With 8-byte doubles turned on, the definitions of - * sin, cos, acos, etc., are screwed up. They are fine as long as - * they are used as function calls, but if the function pointers - * are passed around and used, they will crash hard on the 68K. - * - * Copyright (c) 1997 Sun Microsystems, Inc. - * - * See the file "license.terms" for information on usage and redistribution - * of this file, and for a DISCLAIMER OF ALL WARRANTIES. - * - * RCS: @(#) $Id: tclMath.h,v 1.2 1998/09/14 18:40:01 stanton Exp $ - */ - -#ifndef _TCLMATH -#define _TCLMATH - -#if defined(MAC_TCL) -# include "tclMacMath.h" -#else -# include <math.h> -#endif - -#endif /* _TCLMATH */ |