aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-03-05 12:41:46 -0800
committerAlon Zakai <alonzakai@gmail.com>2013-03-05 12:41:46 -0800
commitae342cbe2e592ddb35c533723912a3492acca3ba (patch)
treecc4d31e2e34bf3ecc4cbcec5eed674d416daa207
parent010873fc624f7e6536f3ddb797718bd806e44ab2 (diff)
parent057ab746dfa96de94f5173531e7839d271d71c5a (diff)
Merge pull request #909 from waywardmonkeys/fix-stdbool-h
Ensure __bool_true_false_are_defined is defined.
-rw-r--r--system/include/stdbool.h3
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