diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2011-08-16 07:36:59 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2011-08-16 07:36:59 (GMT) |
commit | 9e54409ee9dce212a60524125107a3679315e4bc (patch) | |
tree | db328e56b7455ebc0e3ba8b9a0a2cc1444b89459 /generic/tclCmdAH.c | |
parent | 9554906e443d3f1d7e894125716c5b13994e0f47 (diff) | |
download | tcl-9e54409ee9dce212a60524125107a3679315e4bc.zip tcl-9e54409ee9dce212a60524125107a3679315e4bc.tar.gz tcl-9e54409ee9dce212a60524125107a3679315e4bc.tar.bz2 |
[Bug 3388350] mingw64 compiler warnings
n mingw, sys/stat.h must be included
before winsock2.h, so make sure of that
Diffstat (limited to 'generic/tclCmdAH.c')
-rw-r--r-- | generic/tclCmdAH.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/generic/tclCmdAH.c b/generic/tclCmdAH.c index 5e231f6..c170b9b 100644 --- a/generic/tclCmdAH.c +++ b/generic/tclCmdAH.c @@ -12,6 +12,7 @@ * of this file, and for a DISCLAIMER OF ALL WARRANTIES. */ +#include <sys/stat.h> #include "tclInt.h" #include "tclPort.h" #include <locale.h> |