lib/smbios: Improve Type9
[coreboot2.git] / src / include / stdbool.h
blobbfb997a1fadbfae1fb50785f19869c923e42bb72
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #ifndef __STDBOOL_H__
4 #define __STDBOOL_H__
6 #if __STDC_VERSION__ <= 201710L
7 typedef _Bool bool;
8 #define true 1
9 #define false 0
10 #endif
12 #endif /* __STDBOOL_H__ */