diff options
| author | dgp@users.sourceforge.net <dgp> | 2015-03-24 17:34:05 (GMT) |
|---|---|---|
| committer | dgp@users.sourceforge.net <dgp> | 2015-03-24 17:34:05 (GMT) |
| commit | c16adf06821bc41a20a517cf32612f0f745d3e2a (patch) | |
| tree | 133b9c3a6a03a0fed12341c4eb734652e65abc20 /unix/tclUnixPort.h | |
| parent | 617dc2e3b6fd5564fe72b324d7f57daf269fd937 (diff) | |
| download | tcl-c16adf06821bc41a20a517cf32612f0f745d3e2a.zip tcl-c16adf06821bc41a20a517cf32612f0f745d3e2a.tar.gz tcl-c16adf06821bc41a20a517cf32612f0f745d3e2a.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 |
