aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2020-10-24 23:21:06 +0000
committerWarner Losh <imp@FreeBSD.org>2020-10-24 23:21:06 +0000
commit60b426f46ce3b5edbe8a9e4f73ca60e4ff914d7c (patch)
tree93cd1baf16e271bbfbd3592f5dfcb5cddc44674e /include
parentf93c028ac9fa8d9a86185da83b499017596d6d92 (diff)
Notes
Diffstat (limited to 'include')
-rw-r--r--include/stdbool.h3
-rw-r--r--include/stdlib.h2
2 files changed, 1 insertions, 4 deletions
diff --git a/include/stdbool.h b/include/stdbool.h
index 267e1ad2a1a0c..2879da798da64 100644
--- a/include/stdbool.h
+++ b/include/stdbool.h
@@ -37,9 +37,6 @@
#define true 1
#define bool _Bool
-#if __STDC_VERSION__ < 199901L && __GNUC__ < 3 && !defined(__INTEL_COMPILER)
-typedef int _Bool;
-#endif
#endif /* !__cplusplus */
#endif /* __bool_true_false_are_defined */
diff --git a/include/stdlib.h b/include/stdlib.h
index 045a9fda9cfb7..ca96c06b83b73 100644
--- a/include/stdlib.h
+++ b/include/stdlib.h
@@ -253,7 +253,7 @@ extern void (*malloc_message)(void *, const char *);
* On platforms where alloca() is not in libc, programs which use it
* will fail to link when compiled with non-GNU compilers.
*/
-#if __GNUC__ >= 2 || defined(__INTEL_COMPILER)
+#if __GNUC__ >= 2
#undef alloca /* some GNU bits try to get cute and define this on their own */
#define alloca(sz) __builtin_alloca(sz)
#endif