summaryrefslogtreecommitdiffstats
path: root/generic/tclInt.h
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2019-06-11 15:30:27 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2019-06-11 15:30:27 (GMT)
commit6420ec98e8c9a4413ffc05b9b62892cee736e76e (patch)
tree53cf607aad284c0a191c8101af26a5eb952caaf9 /generic/tclInt.h
parent1cab268c94cced7c8dcb6d2ebb7793cb4b64ed2f (diff)
downloadtcl-6420ec98e8c9a4413ffc05b9b62892cee736e76e.zip
tcl-6420ec98e8c9a4413ffc05b9b62892cee736e76e.tar.gz
tcl-6420ec98e8c9a4413ffc05b9b62892cee736e76e.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 821a39f..8b4ccc5 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;