Sign in
mojo
/
mojo-tools
/
a02505467f01880befaf0b32a25b97975b47a726
/
.
/
fusl
/
include
/
stdbool.h
blob: a9d7ab787839727b5fada461710a265afd1dff27 [
file
] [
log
] [
blame
]
Viet-Trung Luu
96b05c1
2016-01-11 11:26:36 -0800
[
diff
] [
blame
]
1
#ifndef
_STDBOOL_H
2
#define
_STDBOOL_H
3
4
#ifndef
__cplusplus
5
6
#define
true
1
7
#define
false
0
8
#define
bool
_Bool
9
10
#endif
11
12
#define
__bool_true_false_are_defined
1
13
14
#endif