diff options
author | dgp <dgp@users.sourceforge.net> | 2002-05-31 22:20:18 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2002-05-31 22:20:18 (GMT) |
commit | e9decfcf415943937b04c64435f13b80941a78fb (patch) | |
tree | 7e2890810fb33260aa3268e00f8668ae59f4d326 /unix/tclAppInit.c | |
parent | 4fad013842bba77cfb05f7f123ed77ff006d8c74 (diff) | |
download | tcl-e9decfcf415943937b04c64435f13b80941a78fb.zip tcl-e9decfcf415943937b04c64435f13b80941a78fb.tar.gz tcl-e9decfcf415943937b04c64435f13b80941a78fb.tar.bz2 |
* Removed internal routine
TclMathInProgress and Unix implementation of matherr(). These
are now obsolete, dealing with very old versions of the C math
library. Windows version is retained in case Borland compilers
require it, but it is inactive. Thanks to Joe English.
[Bug 474335, Patch 555635].
Diffstat (limited to 'unix/tclAppInit.c')
-rw-r--r-- | unix/tclAppInit.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/unix/tclAppInit.c b/unix/tclAppInit.c index 55893b7..3c47a39 100644 --- a/unix/tclAppInit.c +++ b/unix/tclAppInit.c @@ -11,20 +11,11 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclAppInit.c,v 1.10 2002/02/12 14:23:33 davygrvy Exp $ + * RCS: @(#) $Id: tclAppInit.c,v 1.11 2002/05/31 22:20:22 dgp Exp $ */ #include "tcl.h" -/* - * The following variable is a special hack that is needed in order for - * Sun shared libraries to be used for Tcl. - */ - -extern int matherr(); -int *tclDummyMathPtr = (int *) matherr; - - #ifdef TCL_TEST #include "tclInt.h" |