From f01373765b1ac5270fbb1859a2f6d42510f34cde Mon Sep 17 00:00:00 2001 From: Michael Matz Date: Mon, 7 Apr 2014 00:30:31 +0200 Subject: [PATCH] stdbool.h: Make conformant to ISOC99 For conformance to ISO C the stdbool.h header has to provide the macro __bool_true_false_are_defined (defined to 1). Yep, that name is really in the standard. --- include/stdbool.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/stdbool.h b/include/stdbool.h index 6ed13a6..d2ee446 100644 --- a/include/stdbool.h +++ b/include/stdbool.h @@ -6,5 +6,6 @@ #define bool _Bool #define true 1 #define false 0 +#define __bool_true_false_are_defined 1 #endif /* _STDBOOL_H */