diff options
author | davygrvy <davygrvy@pobox.com> | 2002-02-21 18:37:03 (GMT) |
---|---|---|
committer | davygrvy <davygrvy@pobox.com> | 2002-02-21 18:37:03 (GMT) |
commit | bab9941ca86ab7fdba468681e54463cef336db5d (patch) | |
tree | b70138d2237ff5ad3d4df22acf4cad800efdc549 /win/tclAppInit.c | |
parent | 8d3ea391afb7566c5037fdc222ee4988c890ac4d (diff) | |
download | tcl-bab9941ca86ab7fdba468681e54463cef336db5d.zip tcl-bab9941ca86ab7fdba468681e54463cef336db5d.tar.gz tcl-bab9941ca86ab7fdba468681e54463cef336db5d.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).
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 |