summaryrefslogtreecommitdiffstats
path: root/sord
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-07-21 19:41:59 +0200
committerDavid Robillard <d@drobilla.net>2020-07-21 19:41:59 +0200
commit23ad62885bdff54d466a7ac4e3b40c29cc2c10b9 (patch)
treeb5ae3782a517cfe6eb9c9bbf182f9e6ca6d5a91f /sord
parente8042f3e93863f7d77323096836d61f71548a44c (diff)
downloadsord-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.h3
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
/**