Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
musl
/
6232b96f5153d0b718054a8bc569fcd7d596bab2
/
.
/
include
/
stdbool.h
blob: 3d8fbf2a04b864629960fe69ad3c8c223b561042 [
file
] [
log
] [
blame
]
Rich Felker
0b44a03
2011-02-12 00:22:29 -0500
[
diff
] [
blame
]
1
#ifndef
_STDBOOL_H
2
#define
_STDBOOL_H
3
4
#ifndef
__cplusplus
5
6
#define
true
1
7
#define
false
0
8
9
typedef
_Bool
bool
;
10
11
#endif
12
13
#endif