summaryrefslogtreecommitdiffstats
path: root/generic/tclExecute.c
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2007-09-06 18:20:29 (GMT)
committerdgp <dgp@users.sourceforge.net>2007-09-06 18:20:29 (GMT)
commitbe530dc22f04720140f6af009adcd7c007e6f801 (patch)
treeee5f8fa19720121fa1721f7365262ea03b859b7a /generic/tclExecute.c
parent2ac13cbeaf7d29c6c861c2c31cd6ffa293e295ef (diff)
downloadtcl-be530dc22f04720140f6af009adcd7c007e6f801.zip
tcl-be530dc22f04720140f6af009adcd7c007e6f801.tar.gz
tcl-be530dc22f04720140f6af009adcd7c007e6f801.tar.bz2
merge updates from HEAD
Diffstat (limited to 'generic/tclExecute.c')
-rw-r--r--generic/tclExecute.c18
1 files changed, 1 insertions, 17 deletions
diff --git a/generic/tclExecute.c b/generic/tclExecute.c
index 4501de3..fe911fa 100644
--- a/generic/tclExecute.c
+++ b/generic/tclExecute.c
@@ -12,7 +12,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclExecute.c,v 1.285.2.12 2007/09/04 17:43:50 dgp Exp $
+ * RCS: @(#) $Id: tclExecute.c,v 1.285.2.13 2007/09/06 18:20:30 dgp Exp $
*/
#include "tclInt.h"
@@ -34,22 +34,6 @@
#endif
/*
- * The stuff below is a bit of a hack so that this file can be used in
- * environments that include no UNIX.
- * TODO: Does this serve any purpose anymore?
- */
-
-#ifdef TCL_GENERIC_ONLY
-# ifndef NO_FLOAT_H
-# include <float.h>
-# else /* NO_FLOAT_H */
-# ifndef NO_VALUES_H
-# include <values.h>
-# endif /* !NO_VALUES_H */
-# endif /* !NO_FLOAT_H */
-#endif /* !TCL_GENERIC_ONLY */
-
-/*
* A mask (should be 2**n-1) that is used to work out when the bytecode engine
* should call Tcl_AsyncReady() to see whether there is a signal that needs
* handling.