diff options
author | dgp <dgp@noemail.net> | 2004-04-06 22:25:46 (GMT) |
---|---|---|
committer | dgp <dgp@noemail.net> | 2004-04-06 22:25:46 (GMT) |
commit | be667cfb961331d3226eca9b63275158abfccd28 (patch) | |
tree | f364fcb944511bb8790be7882532203c0195be6b /generic/tclIOCmd.c | |
parent | d89e73fbbdd3e3ae2228cce783e59f0e4fec7627 (diff) | |
download | tcl-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/tclIOCmd.c')
-rw-r--r-- | generic/tclIOCmd.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/generic/tclIOCmd.c b/generic/tclIOCmd.c index c2c0a40..1f7cd44 100644 --- a/generic/tclIOCmd.c +++ b/generic/tclIOCmd.c @@ -8,11 +8,10 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclIOCmd.c,v 1.17 2004/03/17 18:14:13 das Exp $ + * RCS: @(#) $Id: tclIOCmd.c,v 1.18 2004/04/06 22:25:52 dgp Exp $ */ #include "tclInt.h" -#include "tclPort.h" /* * Callback structure for accept callback in a TCP server. |