diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-05-17 15:12:27 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-05-17 15:12:27 (GMT) |
commit | 7f79d3446ce2dc0aeaf0baf7d4c35cecbb2c147e (patch) | |
tree | a267198015e697c27e556dc6bb91e8b8c203cf75 /generic | |
parent | c7e9f685b7d7248724972701ce50e615384c8802 (diff) | |
download | tcl-7f79d3446ce2dc0aeaf0baf7d4c35cecbb2c147e.zip tcl-7f79d3446ce2dc0aeaf0baf7d4c35cecbb2c147e.tar.gz tcl-7f79d3446ce2dc0aeaf0baf7d4c35cecbb2c147e.tar.bz2 |
<sys/stat.h> inclusion is only needed when compiling for Win32, don't bother for other platforms.
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tclBasic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c index 757f9ca..6e457c0 100644 --- a/generic/tclBasic.c +++ b/generic/tclBasic.c @@ -17,9 +17,9 @@ #if defined(_WIN32) && !defined(_WIN64) # define _USE_32BIT_TIME_T +# include <sys/stat.h> #endif -#include <sys/stat.h> #include "tclInt.h" #include "tclCompile.h" #ifndef TCL_GENERIC_ONLY |