summaryrefslogtreecommitdiffstats
path: root/generic/tclInt.h
diff options
context:
space:
mode:
authornijtmans <nijtmans>2010-04-28 11:50:53 (GMT)
committernijtmans <nijtmans>2010-04-28 11:50:53 (GMT)
commitdd801c86b1a462d516d4e3b97e459fc41a4be684 (patch)
treed670f15c4e6711c3221297fd0c7137f4ae51d7ae /generic/tclInt.h
parentad4fb382c8f0c304d9349c4b2db7aecd8ace54cb (diff)
downloadtcl-dd801c86b1a462d516d4e3b97e459fc41a4be684.zip
tcl-dd801c86b1a462d516d4e3b97e459fc41a4be684.tar.gz
tcl-dd801c86b1a462d516d4e3b97e459fc41a4be684.tar.bz2
Remove unused @MAN2TCLFLAGS@
Move <limits.h> include from tclInt.h to tclWinPort.h, and eliminate unneeded <stdlib.h>, <stdio.h> and <string.h>, which are already in tclInt.h Move "tclInt.h" from regcustom.h up to regex.h. tclAlloc.c: Unneeded <stdio.h> include tclExecute.c: Fix gcc warning: comparison between signed and unsigned
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r--generic/tclInt.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h
index 55d6f07..3ca58d7 100644
--- a/generic/tclInt.h
+++ b/generic/tclInt.h
@@ -15,7 +15,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclInt.h,v 1.472 2010/04/28 10:50:37 dkf Exp $
+ * RCS: @(#) $Id: tclInt.h,v 1.473 2010/04/28 11:50:53 nijtmans Exp $
*/
#ifndef _TCLINT
@@ -42,11 +42,6 @@
#include <stdio.h>
#include <ctype.h>
-#ifdef NO_LIMITS_H
-# include "../compat/limits.h"
-#else
-# include <limits.h>
-#endif
#ifdef NO_STDLIB_H
# include "../compat/stdlib.h"
#else