diff options
Diffstat (limited to 'src/arch/i386/include/stdint.h')
-rw-r--r-- | src/arch/i386/include/stdint.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/arch/i386/include/stdint.h b/src/arch/i386/include/stdint.h index d117fc4640..7f6b94037f 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 */ |