diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-05-17 15:08:48 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-05-17 15:08:48 (GMT) |
commit | 2e2a7f14b404980bdc7423407ddb866901ca14a5 (patch) | |
tree | 0c3ab2d3a69e70373084c032d1498f40a4b73c96 /generic/tclBasic.c | |
parent | feb5958816bb507f819c42a0b5b77dc7001a76cd (diff) | |
download | tcl-2e2a7f14b404980bdc7423407ddb866901ca14a5.zip tcl-2e2a7f14b404980bdc7423407ddb866901ca14a5.tar.gz tcl-2e2a7f14b404980bdc7423407ddb866901ca14a5.tar.bz2 |
- eliminate compiler warning when compiling with Visual Studio.
- Make sure that _ftime() from msvcrt.dll is used, not ftime() from mingw (which might use 64-bit time_t)
Diffstat (limited to 'generic/tclBasic.c')
-rw-r--r-- | generic/tclBasic.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c index 0fd025a..757f9ca 100644 --- a/generic/tclBasic.c +++ b/generic/tclBasic.c @@ -19,6 +19,7 @@ # define _USE_32BIT_TIME_T #endif +#include <sys/stat.h> #include "tclInt.h" #include "tclCompile.h" #ifndef TCL_GENERIC_ONLY |