diff options
author | David Robillard <d@drobilla.net> | 2018-12-30 10:51:58 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-01-05 18:55:50 +0100 |
commit | c2f8d84c2e7562811dbb5613e5d837071b627b75 (patch) | |
tree | ece3f542e5847f2473ba8f322107754a61ef5c52 | |
parent | 514e302b667be875f548a62979e412c39aca4034 (diff) | |
download | serd-c2f8d84c2e7562811dbb5613e5d837071b627b75.tar.gz serd-c2f8d84c2e7562811dbb5613e5d837071b627b75.tar.bz2 serd-c2f8d84c2e7562811dbb5613e5d837071b627b75.zip |
Remove ancient MSVC workaround for stdbool.h
-rw-r--r-- | serd/serd.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/serd/serd.h b/serd/serd.h index 49a516fa..b88cb8f8 100644 --- a/serd/serd.h +++ b/serd/serd.h @@ -22,6 +22,7 @@ #define SERD_SERD_H #include <stdarg.h> +#include <stdbool.h> #include <stddef.h> #include <stdint.h> #include <stdio.h> @@ -45,8 +46,6 @@ #ifdef __cplusplus extern "C" { -#else -# include <stdbool.h> #endif /** |