diff options
author | David Robillard <d@drobilla.net> | 2020-07-21 19:41:59 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-07-21 19:41:59 +0200 |
commit | 23ad62885bdff54d466a7ac4e3b40c29cc2c10b9 (patch) | |
tree | b5ae3782a517cfe6eb9c9bbf182f9e6ca6d5a91f /sord | |
parent | e8042f3e93863f7d77323096836d61f71548a44c (diff) | |
download | sord-23ad62885bdff54d466a7ac4e3b40c29cc2c10b9.tar.gz sord-23ad62885bdff54d466a7ac4e3b40c29cc2c10b9.tar.bz2 sord-23ad62885bdff54d466a7ac4e3b40c29cc2c10b9.zip |
Always include stdbool.h
This was a workaround for ancient versions of MSVC that are no longer
supported.
Diffstat (limited to 'sord')
-rw-r--r-- | sord/sord.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sord/sord.h b/sord/sord.h index 28353fc..62bf782 100644 --- a/sord/sord.h +++ b/sord/sord.h @@ -21,6 +21,7 @@ #ifndef SORD_SORD_H #define SORD_SORD_H +#include <stdbool.h> #include <stddef.h> #include <stdint.h> #include <stdio.h> @@ -46,8 +47,6 @@ #ifdef __cplusplus extern "C" { -#else -# include <stdbool.h> #endif /** |