diff options
author | David Robillard <d@drobilla.net> | 2020-08-13 19:48:41 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-08-14 09:43:38 +0200 |
commit | b52e3f8db950cc8f3397fad00d0fcc8e611004f7 (patch) | |
tree | 59ff12f518308d36befb5b854dd73815ed8b8210 /zix/common.h | |
parent | f8b396210aa3247a64c890a69a7d059513797607 (diff) | |
download | zix-b52e3f8db950cc8f3397fad00d0fcc8e611004f7.tar.gz zix-b52e3f8db950cc8f3397fad00d0fcc8e611004f7.tar.bz2 zix-b52e3f8db950cc8f3397fad00d0fcc8e611004f7.zip |
Remove workarounds for ancient versions of MSVC
Diffstat (limited to 'zix/common.h')
-rw-r--r-- | zix/common.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/zix/common.h b/zix/common.h index e427885..3271858 100644 --- a/zix/common.h +++ b/zix/common.h @@ -17,6 +17,8 @@ #ifndef ZIX_COMMON_H #define ZIX_COMMON_H +#include <stdbool.h> + /** @addtogroup zix @{ @@ -48,8 +50,6 @@ #ifdef __cplusplus extern "C" { -#else -# include <stdbool.h> #endif #ifdef __GNUC__ |