Stefan Reinauer (stefan.reinauer@coreboot.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/2050
-gerrit
commit c90422a42f1c2ff56fd40395113d35e3f197dc1d Author: Stefan Reinauer reinauer@chromium.org Date: Tue Dec 18 14:25:56 2012 -0800
Get stdint.h in sync between ARMv7 and x86
- add s8, s16, s32 types to x86
Change-Id: Ib9c260fc4f72029492f2d935dbb822cc3ff83cc4 Signed-off-by: Stefan Reinauer reinauer@google.com --- src/arch/x86/include/stdint.h | 4 ++++ 1 file changed, 4 insertions(+)
diff --git a/src/arch/x86/include/stdint.h b/src/arch/x86/include/stdint.h index b393cc1..07cae47 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__