From ea9a1f60177bad3e8c63f030f55dec87d0dd245c Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Tue, 18 Dec 2012 14:25:56 -0800 Subject: Get stdint.h in sync between ARMv7 and x86 - add s8, s16, s32 types to x86 Change-Id: Ib9c260fc4f72029492f2d935dbb822cc3ff83cc4 Signed-off-by: Stefan Reinauer Reviewed-on: http://review.coreboot.org/2050 Tested-by: build bot (Jenkins) Reviewed-by: David Hendricks --- src/arch/x86/include/stdint.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src') 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__ -- cgit v1.2.3