diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2014-10-08 07:11:53 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2014-10-08 07:11:53 (GMT) |
commit | 6567599f3a6075b0a76cf29288488901aa6a6579 (patch) | |
tree | ac75347fef9ced51a7fd7ed1e952fc85099752e0 /generic/tclAlloc.c | |
parent | 46880aeb57e56eadf65fc6aba4c1240513456458 (diff) | |
parent | 6c6b3efbe49179c32ae0244e20c9d4096cb51fbe (diff) | |
download | tcl-6567599f3a6075b0a76cf29288488901aa6a6579.zip tcl-6567599f3a6075b0a76cf29288488901aa6a6579.tar.gz tcl-6567599f3a6075b0a76cf29288488901aa6a6579.tar.bz2 |
Fix [59a2e78e54d3361c33b8cd6eef55d384d8abecd7|59a2e78e54] : tclWinTime.c does not compile with MSVC14.
Eliminate use of __MINGW32__ macro everywhere, as it is deprecated.
Diffstat (limited to 'generic/tclAlloc.c')
-rw-r--r-- | generic/tclAlloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclAlloc.c b/generic/tclAlloc.c index ae61e85..cda1f38 100644 --- a/generic/tclAlloc.c +++ b/generic/tclAlloc.c @@ -31,7 +31,7 @@ * until Tcl uses config.h properly. */ -#if defined(_MSC_VER) || defined(__MINGW32__) || defined(__BORLANDC__) +#if defined(_MSC_VER) || defined(__MSVCRT__) || defined(__BORLANDC__) typedef unsigned long caddr_t; #endif |