From ace2dc59627a733d43ba00342745e30ac95768d3 Mon Sep 17 00:00:00 2001 From: Patrick Georgi Date: Fri, 3 Apr 2009 20:14:59 +0000 Subject: [PATCH] Add u64 typedef to ppc (trivial) Signed-off-by: Patrick Georgi Acked-by: Patrick Georgi git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4059 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/arch/ppc/include/stdint.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/arch/ppc/include/stdint.h b/src/arch/ppc/include/stdint.h index 5e4921caf0..ee29770d9e 100644 --- a/src/arch/ppc/include/stdint.h +++ b/src/arch/ppc/include/stdint.h @@ -51,5 +51,6 @@ typedef unsigned long long uintmax_t; typedef uint8_t u8; typedef uint16_t u16; typedef uint32_t u32; +typedef uint64_t u64; #endif /* PPC_STDINT_H */