diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-01-15 17:32:13 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-01-15 17:32:13 (GMT) |
commit | 5d8dc198ffb03372e3b66985f080b2d9a3a30297 (patch) | |
tree | bde14dee2ae7e6ac207fdcf9e4a51eb50b462211 /generic | |
parent | 5d071002e5b4cfa10e6e75a330c70c2247c4eb5b (diff) | |
parent | 1415e8eb0e56e0270c6349fb9a52f478b880af84 (diff) | |
download | tcl-5d8dc198ffb03372e3b66985f080b2d9a3a30297.zip tcl-5d8dc198ffb03372e3b66985f080b2d9a3a30297.tar.gz tcl-5d8dc198ffb03372e3b66985f080b2d9a3a30297.tar.bz2 |
[Bug 3598300]: unix: tcl.h does not include sys/stat.h
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tclPort.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/generic/tclPort.h b/generic/tclPort.h index 7021b8d..12a60db 100644 --- a/generic/tclPort.h +++ b/generic/tclPort.h @@ -19,11 +19,10 @@ #endif #if defined(_WIN32) # include "tclWinPort.h" -#endif -#include "tcl.h" -#if !defined(_WIN32) +#else # include "tclUnixPort.h" #endif +#include "tcl.h" #if !defined(LLONG_MIN) # ifdef TCL_WIDE_INT_IS_LONG |