repo.or.cz
/
coreboot2.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
lib/smbios: Improve Type9
[coreboot2.git]
/
src
/
include
/
stdbool.h
blob
bfb997a1fadbfae1fb50785f19869c923e42bb72
1
/* SPDX-License-Identifier: GPL-2.0-only */
2
3
#ifndef __STDBOOL_H__
4
#define __STDBOOL_H__
5
6
#if __STDC_VERSION__ <= 201710L
7
typedef
_Bool
bool
;
8
#define true 1
9
#define false 0
10
#endif
11
12
#endif
/* __STDBOOL_H__ */