summaryrefslogtreecommitdiffstats
path: root/generic/tclInt.h
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2019-06-11 15:31:29 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2019-06-11 15:31:29 (GMT)
commite69d76af16939ec4327b1793f8a2cb358a141972 (patch)
tree541b1e1f1821847511d0b6413e66b654c81c7e8e /generic/tclInt.h
parent44d4c7f79313b7e6d72310de9405978db17cb1a6 (diff)
parent6420ec98e8c9a4413ffc05b9b62892cee736e76e (diff)
downloadtcl-e69d76af16939ec4327b1793f8a2cb358a141972.zip
tcl-e69d76af16939ec4327b1793f8a2cb358a141972.tar.gz
tcl-e69d76af16939ec4327b1793f8a2cb358a141972.tar.bz2
Fix [25deec4e46]: Tcl fails to compile with icc due to typedef conflict
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r--generic/tclInt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h
index ce40d23..288176d 100644
--- a/generic/tclInt.h
+++ b/generic/tclInt.h
@@ -49,7 +49,7 @@
#include <string.h>
#endif
#if defined(STDC_HEADERS) || defined(__STDC__) || defined(__C99__FUNC__) \
- || defined(__cplusplus) || defined(_MSC_VER)
+ || defined(__cplusplus) || defined(_MSC_VER) || defined(__ICC)
#include <stddef.h>
#else
typedef int ptrdiff_t;