diff options
author | davygrvy <davygrvy@noemail.net> | 2002-02-21 18:37:03 (GMT) |
---|---|---|
committer | davygrvy <davygrvy@noemail.net> | 2002-02-21 18:37:03 (GMT) |
commit | 1ff5406b053f6d3db9e91dbc05ed34fee6280dce (patch) | |
tree | b70138d2237ff5ad3d4df22acf4cad800efdc549 /win/tclAppInit.c | |
parent | f555bbbaa592ed5bc8021c2d5ace43f5d88dbd36 (diff) | |
download | tcl-1ff5406b053f6d3db9e91dbc05ed34fee6280dce.zip tcl-1ff5406b053f6d3db9e91dbc05ed34fee6280dce.tar.gz tcl-1ff5406b053f6d3db9e91dbc05ed34fee6280dce.tar.bz2 |
* win/tclAppInit.c: Changed #include "tcl.h" to be tclPort.h to
remove the raw windows.h include. tclPort.h brings in windows.h
already and lessens the pre-compiled-header mush and the randomly
useless #pragma comment (lib,...) references throughout the big
windows.h tree (as observed at high linker warning levels).
FossilOrigin-Name: 2bba08d67fb816fc7f44ca253a461d2c4fa1c312
Diffstat (limited to 'win/tclAppInit.c')
-rw-r--r-- | win/tclAppInit.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/win/tclAppInit.c b/win/tclAppInit.c index b8f3e78..990c8ad 100644 --- a/win/tclAppInit.c +++ b/win/tclAppInit.c @@ -11,11 +11,10 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclAppInit.c,v 1.6 1999/12/02 02:03:37 redman Exp $ + * RCS: @(#) $Id: tclAppInit.c,v 1.7 2002/02/21 18:37:03 davygrvy Exp $ */ -#include "tcl.h" -#include <windows.h> +#include "tclPort.h" #include <locale.h> #ifdef TCL_TEST |