summaryrefslogtreecommitdiffstats
path: root/generic/tclHistory.c
diff options
context:
space:
mode:
authordgp <dgp@noemail.net>2004-04-06 22:25:46 (GMT)
committerdgp <dgp@noemail.net>2004-04-06 22:25:46 (GMT)
commitbe667cfb961331d3226eca9b63275158abfccd28 (patch)
treef364fcb944511bb8790be7882532203c0195be6b /generic/tclHistory.c
parentd89e73fbbdd3e3ae2228cce783e59f0e4fec7627 (diff)
downloadtcl-be667cfb961331d3226eca9b63275158abfccd28.zip
tcl-be667cfb961331d3226eca9b63275158abfccd28.tar.gz
tcl-be667cfb961331d3226eca9b63275158abfccd28.tar.bz2
Patch 922727 committed. Implements three changes:
* generic/tclInt.h: Reworked the Tcl header files into a clean * unix/tclUnixPort.h: hierarchy where tcl.h < tclPort.h < tclInt.h * win/tclWinInt.h: and every C source file should #include * win/tclWinPort.h: at most one of those files to satisfy its declaration needs. tclWinInt.h and tclWinPort.h also better organized so that tclWinPort.h includes the Windows implementation of cross-platform declarations, while tclWinInt.h makes declarations that are available on Windows only. * generic/tclBinary.c (TCL_NO_MATH): Deleted the generic/tclMath.h * generic/tclMath.h (removed): header file. The internal Tcl * macosx/Makefile (PRIVATE_HEADERS): header, tclInt.h, has a * win/tcl.dsp: #include <math.h> directly, and file external to Tcl needing libm should do the same. * win/Makefile.in (WIN_OBJS): Deleted the win/tclWinMtherr.c file. * win/makefile.bc (TCLOBJS): It's a vestige from matherr() days * win/makefile.vc (TCLOBJS): gone by. * win/tcl.dsp: * win/tclWinMtherr.c (removed): FossilOrigin-Name: 2e5b18c85c944b46540edfdd6580648e32645e2b
Diffstat (limited to 'generic/tclHistory.c')
-rw-r--r--generic/tclHistory.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/generic/tclHistory.c b/generic/tclHistory.c
index 20ccb7c..90ef855 100644
--- a/generic/tclHistory.c
+++ b/generic/tclHistory.c
@@ -12,11 +12,10 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclHistory.c,v 1.4 2002/01/16 06:02:34 dgp Exp $
+ * RCS: @(#) $Id: tclHistory.c,v 1.5 2004/04/06 22:25:51 dgp Exp $
*/
#include "tclInt.h"
-#include "tclPort.h"
/*