repo.or.cz
/
libcstd.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
assert: Split some of the work into a separate C file.
[libcstd.git]
/
include
/
stdbool.h
blob
dbb722f37b25d7151940f7ef611e07cddd14e86b
1
#ifndef _STDBOOL_H_
2
#define _STDBOOL_H_
3
4
#define __bool_true_false_are_defined 1
5
#define bool _Bool
6
#define true 1
7
#define false 0
8
9
#endif