diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-03-05 12:41:46 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-03-05 12:41:46 -0800 |
commit | ae342cbe2e592ddb35c533723912a3492acca3ba (patch) | |
tree | cc4d31e2e34bf3ecc4cbcec5eed674d416daa207 | |
parent | 010873fc624f7e6536f3ddb797718bd806e44ab2 (diff) | |
parent | 057ab746dfa96de94f5173531e7839d271d71c5a (diff) |
Merge pull request #909 from waywardmonkeys/fix-stdbool-h
Ensure __bool_true_false_are_defined is defined.
-rw-r--r-- | system/include/stdbool.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/system/include/stdbool.h b/system/include/stdbool.h index f970ade8..561eed3f 100644 --- a/system/include/stdbool.h +++ b/system/include/stdbool.h @@ -2,12 +2,13 @@ #ifndef __stdbool_h__ #define __stdbool_h__ +#define __bool_true_false_are_defined 1 + #ifndef __cplusplus #define bool _Bool #define true 1 #define false 0 -#define __bool_true_false_are_defined 1 #endif |