diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-01-17 08:38:41 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-01-17 08:38:41 (GMT) |
commit | 4a5ef05df5be16afdfdbf1a38f32d72bb3654f7f (patch) | |
tree | 22b65965f9b38c6616be9189ca8a6b64dc72e478 /generic/tclIOUtil.c | |
parent | 445ffe85310c4a5853d313305b11a4323605c29c (diff) | |
parent | 6fe554cad0f2191435d30324f3e2b0caf121f891 (diff) | |
download | tcl-4a5ef05df5be16afdfdbf1a38f32d72bb3654f7f.zip tcl-4a5ef05df5be16afdfdbf1a38f32d72bb3654f7f.tar.gz tcl-4a5ef05df5be16afdfdbf1a38f32d72bb3654f7f.tar.bz2 |
revert [8abba84224], and make sure that every source file that uses Tcl_StatBuf has an "#include <sys/stat.h>" before including tcl.h
Diffstat (limited to 'generic/tclIOUtil.c')
-rw-r--r-- | generic/tclIOUtil.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/generic/tclIOUtil.c b/generic/tclIOUtil.c index ab08353..f523e8f 100644 --- a/generic/tclIOUtil.c +++ b/generic/tclIOUtil.c @@ -18,9 +18,7 @@ * this file, and for a DISCLAIMER OF ALL WARRANTIES. */ -#if defined(HAVE_SYS_STAT_H) && !defined _WIN32 -# include <sys/stat.h> -#endif +#include <sys/stat.h> #include "tclInt.h" #ifdef __WIN32__ # include "tclWinInt.h" |