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.
master
Michael Matz 2014-04-07 00:30:31 +02:00
parent 0961a38493
commit f01373765b
1 changed files with 1 additions and 0 deletions

View File

@ -6,5 +6,6 @@
#define bool _Bool
#define true 1
#define false 0
#define __bool_true_false_are_defined 1
#endif /* _STDBOOL_H */