summaryrefslogtreecommitdiffstats
path: root/generic/tclExecute.c
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2007-09-05 21:31:01 (GMT)
committerdgp <dgp@users.sourceforge.net>2007-09-05 21:31:01 (GMT)
commit3ba6d8349dcdfb6638956648ba6800f8255c29e8 (patch)
treee1c80edc7a685448f24059f26524a5a378ce8cb9 /generic/tclExecute.c
parentc4b8fc25c68476800d7e9a8a872844807666a46b (diff)
downloadtcl-3ba6d8349dcdfb6638956648ba6800f8255c29e8.zip
tcl-3ba6d8349dcdfb6638956648ba6800f8255c29e8.tar.gz
tcl-3ba6d8349dcdfb6638956648ba6800f8255c29e8.tar.bz2
* generic/tclBasic.c: Removed support for the unmaintained
* generic/tclExecute.c: -DTCL_GENERIC_ONLY configuration. [Bug 1264623] * unix/Makefile.in:
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 b2abf5b..52f70a3 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.328 2007/09/03 01:28:31 das Exp $
+ * RCS: @(#) $Id: tclExecute.c,v 1.329 2007/09/05 21:31:02 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.