summaryrefslogtreecommitdiff
path: root/include/c99
diff options
context:
space:
mode:
authorScott Graham <scott.freedesktop@h4ck3r.net>2013-10-22 08:37:44 -0600
committerBrian Paul <brianp@vmware.com>2013-10-22 08:39:40 -0600
commitdafa97fed9c99e0d0c783d913717229378b575da (patch)
treed05055b7954f9454880d9abf9df3b85bc9136131 /include/c99
parent65ee044a97ef983cde8ccd9d71f9444cecb36f5c (diff)
mesa: fixes for MSVC 2013
Cc: "9.2" <mesa-stable@lists.freedesktop.org> Reviewed-by: Brian Paul <brianp@vmware.com>
Diffstat (limited to 'include/c99')
-rw-r--r--include/c99/stdbool.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/c99/stdbool.h b/include/c99/stdbool.h
index 99a735dfa76..99af1a021bf 100644
--- a/include/c99/stdbool.h
+++ b/include/c99/stdbool.h
@@ -35,7 +35,8 @@
#define bool _Bool
/* For compilers that don't have the builtin _Bool type. */
-#if defined(_MSC_VER) || (__STDC_VERSION__ < 199901L && __GNUC__ < 3)
+#if (defined(_MSC_VER) && _MSC_VER < 1800) || \
+ (defined __GNUC__&& __STDC_VERSION__ < 199901L && __GNUC__ < 3)
typedef unsigned char _Bool;
#endif