aboutsummaryrefslogtreecommitdiff
path: root/src/arch/x86/include/stdint.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/x86/include/stdint.h')
-rw-r--r--src/arch/x86/include/stdint.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/arch/x86/include/stdint.h b/src/arch/x86/include/stdint.h
index c491f4b6e0..e8453abb6a 100644
--- a/src/arch/x86/include/stdint.h
+++ b/src/arch/x86/include/stdint.h
@@ -75,6 +75,9 @@ 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)