coreboot-kgpe-d16/src/include/stdbool.h
Arthur Heymans 1cb9cd5798 Drop ROMCC code and header guards
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>
2019-12-19 03:25:05 +00:00

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__ */