summaryrefslogtreecommitdiffstats
path: root/compat
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2015-03-24 17:34:05 (GMT)
committerdgp <dgp@users.sourceforge.net>2015-03-24 17:34:05 (GMT)
commit32ff2195a21937b9befa7b767fd3a5ef4602da54 (patch)
tree133b9c3a6a03a0fed12341c4eb734652e65abc20 /compat
parent7505833c266274e4d14a84da70f21f23c7f5b9f7 (diff)
downloadtcl-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 'compat')
-rw-r--r--compat/limits.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/compat/limits.h b/compat/limits.h
deleted file mode 100644
index 2cb082b..0000000
--- a/compat/limits.h
+++ /dev/null
@@ -1,22 +0,0 @@
-/*
- * limits.h --
- *
- * This is a dummy header file to #include in Tcl when there
- * is no limits.h in /usr/include. There are only a few
- * definitions here; also see tclPort.h, which already
- * #defines some of the things here if they're not arleady
- * defined.
- *
- * Copyright (c) 1991 The Regents of the University of California.
- * Copyright (c) 1994 Sun Microsystems, Inc.
- *
- * See the file "license.terms" for information on usage and redistribution
- * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
- */
-
-#define LONG_MIN 0x80000000
-#define LONG_MAX 0x7fffffff
-#define INT_MIN 0x80000000
-#define INT_MAX 0x7fffffff
-#define SHRT_MIN 0x8000
-#define SHRT_MAX 0x7fff