diff options
author | Chris Robinson <[email protected]> | 2014-05-06 23:10:50 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-05-06 23:10:50 -0700 |
commit | 38b98de78eceb77e0b2acc84877bf425ba0fb07d (patch) | |
tree | 0624c376a9705d16a0774254217fbae21c9df8cb /config.h.in | |
parent | 1aff37114a930a6a7fab7067572133345398b542 (diff) |
Check for C99 _Bool support
Diffstat (limited to 'config.h.in')
-rw-r--r-- | config.h.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/config.h.in b/config.h.in index e8b944f6..090c00ae 100644 --- a/config.h.in +++ b/config.h.in @@ -92,6 +92,9 @@ /* Define if we have C99 variable-length array support */ #cmakedefine HAVE_C99_VLA +/* Define if we have C99 _Bool support */ +#cmakedefine HAVE_C99_BOOL + /* Define if we have C11 _Static_assert support */ #cmakedefine HAVE_C11_STATIC_ASSERT @@ -107,6 +110,9 @@ /* Define if we have stdint.h */ #cmakedefine HAVE_STDINT_H +/* Define if we have stdbool.h */ +#cmakedefine HAVE_STDBOOL_H + /* Define if we have stdalign.h */ #cmakedefine HAVE_STDALIGN_H |