summaryrefslogtreecommitdiffstats
path: root/generic/tclAlloc.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2014-10-08 07:11:53 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2014-10-08 07:11:53 (GMT)
commit6567599f3a6075b0a76cf29288488901aa6a6579 (patch)
treeac75347fef9ced51a7fd7ed1e952fc85099752e0 /generic/tclAlloc.c
parent46880aeb57e56eadf65fc6aba4c1240513456458 (diff)
parent6c6b3efbe49179c32ae0244e20c9d4096cb51fbe (diff)
downloadtcl-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.c2
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