mirror of
https://github.com/mirror/tinycc.git
synced 2024-12-26 03:50:07 +08:00
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.
This commit is contained in:
parent
0961a38493
commit
f01373765b
@ -6,5 +6,6 @@
|
||||
#define bool _Bool
|
||||
#define true 1
|
||||
#define false 0
|
||||
#define __bool_true_false_are_defined 1
|
||||
|
||||
#endif /* _STDBOOL_H */
|
||||
|
Loading…
Reference in New Issue
Block a user