1cb9cd5798
Change-Id: I730f80afd8aad250f26534435aec24bea75a849c Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/c/coreboot/+/37334 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
13 lines
198 B
C
13 lines
198 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
#ifndef __STDBOOL_H__
|
|
#define __STDBOOL_H__
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
typedef _Bool bool;
|
|
#define true 1
|
|
#define false 0
|
|
|
|
#endif /* __STDBOOL_H__ */
|