X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=src%2Farch%2Fi386%2Finclude%2Fstdint.h;h=7f6b94037f7a493677f77b74897b087dab68ad52;hb=36c83404a356b5dc379dbd46e25514e487f01ec8;hp=d117fc46402a026d7602831d1a9f0313a09371bb;hpb=2b34db8d1de2d63ffa829fe03db0ce2aaba40233;p=coreboot.git diff --git a/src/arch/i386/include/stdint.h b/src/arch/i386/include/stdint.h index d117fc464..7f6b94037 100644 --- a/src/arch/i386/include/stdint.h +++ b/src/arch/i386/include/stdint.h @@ -65,11 +65,13 @@ typedef long int intmax_t; typedef unsigned long int uintmax_t; #endif -#undef __HAVE_LONG_LONG__ - typedef uint8_t u8; typedef uint16_t u16; typedef uint32_t u32; +#if __HAVE_LONG_LONG__ +typedef uint64_t u64; +#endif +#undef __HAVE_LONG_LONG__ #endif /* I386_STDINT_H */