Some changes required to get yabel working on v2 (and they generally make
[coreboot.git] / src / arch / i386 / include / stdint.h
index d117fc46402a026d7602831d1a9f0313a09371bb..7f6b94037f7a493677f77b74897b087dab68ad52 100644 (file)
@@ -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 */