diff options
author | davygrvy <davygrvy@pobox.com> | 2002-02-21 21:20:08 (GMT) |
---|---|---|
committer | davygrvy <davygrvy@pobox.com> | 2002-02-21 21:20:08 (GMT) |
commit | e2574e2bfd57fbf6ec30cb0bcaf1c3c8797802f2 (patch) | |
tree | aab38a6f73eb971805f7162271b161f6d1b0b9ea | |
parent | 2ff6fecb388fc14103c36c7cdbc8813a134a9f49 (diff) | |
download | tcl-e2574e2bfd57fbf6ec30cb0bcaf1c3c8797802f2.zip tcl-e2574e2bfd57fbf6ec30cb0bcaf1c3c8797802f2.tar.gz tcl-e2574e2bfd57fbf6ec30cb0bcaf1c3c8797802f2.tar.bz2 |
reverted back to 1.6, as the header file change to tclPort.h doesn't allow for
easy embedded support. Thanks to Don Porter for pointing this out to me.
-rw-r--r-- | win/tclAppInit.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/win/tclAppInit.c b/win/tclAppInit.c index 990c8ad..5ddc93f 100644 --- a/win/tclAppInit.c +++ b/win/tclAppInit.c @@ -11,10 +11,11 @@ * 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.7 2002/02/21 18:37:03 davygrvy Exp $ + * RCS: @(#) $Id: tclAppInit.c,v 1.8 2002/02/21 21:20:08 davygrvy Exp $ */ -#include "tclPort.h" +#include "tcl.h" +#include <windows.h> #include <locale.h> #ifdef TCL_TEST |