diff options
author | dgp <dgp@users.sourceforge.net> | 2005-10-13 18:30:08 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2005-10-13 18:30:08 (GMT) |
commit | 544db140240a8f3cd1aee0cf13d6bdef7681a9bf (patch) | |
tree | 5e724313982f82288e45019c3f0ad87bf8da9377 /generic | |
parent | be3636dd1e1b3fe36437ae972a54cbfaf306dd97 (diff) | |
download | tcl-544db140240a8f3cd1aee0cf13d6bdef7681a9bf.zip tcl-544db140240a8f3cd1aee0cf13d6bdef7681a9bf.tar.gz tcl-544db140240a8f3cd1aee0cf13d6bdef7681a9bf.tar.bz2 |
* generic/tclExecute.c: Removed obsolete use of NO_ERRNO_H.
* tools/man2tcl.c:
* unix/tcl.m4:
* unix/tclConfig.h.in:
* win/configure.in:
* unix/configure: autoconf-2.59
* win/configure:
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tclExecute.c | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/generic/tclExecute.c b/generic/tclExecute.c index 27e86d6..5115dca 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.209 2005/10/12 23:54:09 dgp Exp $ + * RCS: @(#) $Id: tclExecute.c,v 1.210 2005/10/13 18:30:09 dgp Exp $ */ #include "tclInt.h" @@ -35,7 +35,8 @@ /* * The stuff below is a bit of a hack so that this file can be used in - * environments that include no UNIX, i.e. no errno. Just define errno here. + * environments that include no UNIX. + * TODO: Does this serve any purpose anymore? */ #ifdef TCL_GENERIC_ONLY @@ -46,17 +47,8 @@ # include <values.h> # endif /* !NO_VALUES_H */ # endif /* !NO_FLOAT_H */ -# define NO_ERRNO_H #endif /* !TCL_GENERIC_ONLY */ -#if 0 -#ifdef NO_ERRNO_H -int errno; -# define EDOM 33 -# define ERANGE 34 -#endif -#endif - /* * 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 |