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.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/arch/x86/include/stdint.h b/src/arch/x86/include/stdint.h
index b393cc10e0..07cae47ff9 100644
--- a/src/arch/x86/include/stdint.h
+++ b/src/arch/x86/include/stdint.h
@@ -71,6 +71,10 @@ typedef uint32_t u32;
#if __HAVE_LONG_LONG__
typedef uint64_t u64;
#endif
+typedef int8_t s8;
+typedef int16_t s16;
+typedef int32_t s32;
+
#undef __HAVE_LONG_LONG__