aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarius Strobl <marius@FreeBSD.org>2005-02-19 13:47:33 +0000
committerMarius Strobl <marius@FreeBSD.org>2005-02-19 13:47:33 +0000
commit88e29e11393bb1abd3297607ff94a68ad2997249 (patch)
treedb4c7ef3c23ad4e8ab8a499e5050855d0a5321a1
parentb18fcf5ff2c9fd42509ed19c3faa00715b8116d6 (diff)
Notes
-rw-r--r--include/stdbool.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/stdbool.h b/include/stdbool.h
index c0ce8bbeb8dc..c0d6459cc029 100644
--- a/include/stdbool.h
+++ b/include/stdbool.h
@@ -37,7 +37,7 @@
#define true 1
#define bool _Bool
-#if __STDC_VERSION__ < 199901L && __GNUC__ < 3
+#if __STDC_VERSION__ < 199901L && __GNUC__ < 3 && !defined(__INTEL_COMPILER)
typedef int _Bool;
#endif