36b569af55
Change-Id: I407474eac9f44f04036af7182714db7fdc4035f1 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/43369 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
10 lines
176 B
C
10 lines
176 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
#ifndef __STDBOOL_H__
|
|
#define __STDBOOL_H__
|
|
|
|
typedef _Bool bool;
|
|
#define true 1
|
|
#define false 0
|
|
|
|
#endif /* __STDBOOL_H__ */
|