summaryrefslogtreecommitdiffstats
path: root/include/c99
diff options
context:
space:
mode:
authorTimothy Arceri <[email protected]>2014-12-12 19:05:22 +1100
committerTimothy Arceri <[email protected]>2014-12-17 08:37:05 +1100
commit5eec7c8ab8bddce1de45eee6c48b7078f41a4e2f (patch)
tree7ce91554304c6bf1511138fc9345f774c74ad5a9 /include/c99
parent2308b3bef25723b1ebff0b71f2f87dd44050cc2c (diff)
mesa: remove support for GCC older than 3.3.0
GCC >=3.3 has been required since 9aa3aa71386394725ce88df463d6183f62777ee5 Signed-off-by: Timothy Arceri <[email protected]> Reviewed-By: Jose Fonseca <[email protected]> Reviewed-by: Ian Romanick <[email protected]> Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'include/c99')
-rw-r--r--include/c99/stdbool.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/c99/stdbool.h b/include/c99/stdbool.h
index 99af1a021bf..856be5fb0f6 100644
--- a/include/c99/stdbool.h
+++ b/include/c99/stdbool.h
@@ -35,8 +35,7 @@
#define bool _Bool
/* For compilers that don't have the builtin _Bool type. */
-#if (defined(_MSC_VER) && _MSC_VER < 1800) || \
- (defined __GNUC__&& __STDC_VERSION__ < 199901L && __GNUC__ < 3)
+#if (defined(_MSC_VER) && _MSC_VER < 1800)
typedef unsigned char _Bool;
#endif