aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPatrick Georgi <patrick.georgi@coresystems.de>2009-04-03 20:14:59 +0000
committerPatrick Georgi <patrick.georgi@coresystems.de>2009-04-03 20:14:59 +0000
commitace2dc59627a733d43ba00342745e30ac95768d3 (patch)
tree1aa8b2cbd65e8f5de1ffa7bcad384567b2e037cf /src
parent7b6ea25f2194bccb7680ed0bf05923ee504e1688 (diff)
Add u64 typedef to ppc (trivial)
Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de> Acked-by: Patrick Georgi <patrick.georgi@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4059 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src')
-rw-r--r--src/arch/ppc/include/stdint.h1
1 files changed, 1 insertions, 0 deletions
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 */