Author: stepan Date: 2008-09-27 10:51:11 +0200 (Sat, 27 Sep 2008) New Revision: 3612
Modified: trunk/coreboot-v2/src/arch/ppc/include/stdint.h Log: fix ppc mainboards (trivial) Signed-off-by: Stefan Reinauer <[EMAIL PROTECTED]> Acked-by: Stefan Reinauer <[EMAIL PROTECTED]> Modified: trunk/coreboot-v2/src/arch/ppc/include/stdint.h =================================================================== --- trunk/coreboot-v2/src/arch/ppc/include/stdint.h 2008-09-26 19:37:16 UTC (rev 3611) +++ trunk/coreboot-v2/src/arch/ppc/include/stdint.h 2008-09-27 08:51:11 UTC (rev 3612) @@ -48,5 +48,8 @@ typedef long long int intmax_t; typedef unsigned long long uintmax_t; +typedef uint8_t u8; +typedef uint16_t u16; +typedef uint32_t u32; #endif /* PPC_STDINT_H */ -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

