diff options
author | dgp <dgp@users.sourceforge.net> | 2015-03-24 17:34:05 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2015-03-24 17:34:05 (GMT) |
commit | 32ff2195a21937b9befa7b767fd3a5ef4602da54 (patch) | |
tree | 133b9c3a6a03a0fed12341c4eb734652e65abc20 /unix/tclUnixPort.h | |
parent | 7505833c266274e4d14a84da70f21f23c7f5b9f7 (diff) | |
download | tcl-32ff2195a21937b9befa7b767fd3a5ef4602da54.zip tcl-32ff2195a21937b9befa7b767fd3a5ef4602da54.tar.gz tcl-32ff2195a21937b9befa7b767fd3a5ef4602da54.tar.bz2 |
Tcl source code already assumes the <limits.h> file is available.
(See tcl/libtommath/tommath.h .) So dispose of all the configuration
shenanigans pretending we want to support systems that lack one.
Diffstat (limited to 'unix/tclUnixPort.h')
-rw-r--r-- | unix/tclUnixPort.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/unix/tclUnixPort.h b/unix/tclUnixPort.h index f64d453..a9983be 100644 --- a/unix/tclUnixPort.h +++ b/unix/tclUnixPort.h @@ -144,11 +144,7 @@ typedef off_t Tcl_SeekOffset; #if HAVE_INTTYPES_H # include <inttypes.h> #endif -#ifdef NO_LIMITS_H -# include "../compat/limits.h" -#else -# include <limits.h> -#endif +#include <limits.h> #if HAVE_STDINT_H # include <stdint.h> #endif |