diff options
author | dgp <dgp@users.sourceforge.net> | 2013-09-05 12:45:11 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2013-09-05 12:45:11 (GMT) |
commit | 493b04cbc0a18f28160f6a1abdf5f33ccdf4763a (patch) | |
tree | 88442b4642d15d5343da3efcd40710e1025eab06 | |
parent | 8938dbcc25da22eefd599d55d7aaf40587d51841 (diff) | |
download | tcl-493b04cbc0a18f28160f6a1abdf5f33ccdf4763a.zip tcl-493b04cbc0a18f28160f6a1abdf5f33ccdf4763a.tar.gz tcl-493b04cbc0a18f28160f6a1abdf5f33ccdf4763a.tar.bz2 |
Error in order of #include lines broke some windows builds.
-rw-r--r-- | generic/tclParse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclParse.c b/generic/tclParse.c index c5cb1d1..ee0d4c4 100644 --- a/generic/tclParse.c +++ b/generic/tclParse.c @@ -13,9 +13,9 @@ * this file, and for a DISCLAIMER OF ALL WARRANTIES. */ -#include <assert.h> #include "tclInt.h" #include "tclParse.h" +#include <assert.h> /* * The following table provides parsing information about each possible 8-bit |