From a583924252ec0e49ed718d6c0709995881991c91 Mon Sep 17 00:00:00 2001 From: Alexandru Gagniuc Date: Sun, 25 Jan 2015 20:46:55 -0600 Subject: src/arch/*/include/stdint.h: Provide definitions for bool type Although bool normally belongs in stdbool.h, for our use cases, providing these definitions in stdint.h is acceptable. Change-Id: I1d0ca1018efacc27d7a4a72aa452912e004401f9 Signed-off-by: Alexandru Gagniuc Reviewed-on: http://review.coreboot.org/8279 Reviewed-by: Paul Menzel Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin --- src/arch/arm/include/stdint.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/arch/arm/include') diff --git a/src/arch/arm/include/stdint.h b/src/arch/arm/include/stdint.h index 9d41e6359a..c50e664df1 100644 --- a/src/arch/arm/include/stdint.h +++ b/src/arch/arm/include/stdint.h @@ -75,6 +75,10 @@ typedef int8_t s8; typedef int16_t s16; typedef int32_t s32; +typedef uint8_t bool; +#define true 1 +#define false 0 + #ifndef UINT32_MAX #define UINT32_MAX (4294967295U) #endif -- cgit v1.2.3