From ba9fee97cf2defb223baf13ad2d427ef1d861a47 Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Wed, 18 Dec 2013 14:00:14 -0800 Subject: [PATCH] Fix the x86-64 int64_t/uint64_t. This now matches aarch64, which was already correct. Bug: 12213562 Change-Id: I5da19f0af98347992fea2a62938472f86427740f --- libc/arch-x86_64/include/machine/_types.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/libc/arch-x86_64/include/machine/_types.h b/libc/arch-x86_64/include/machine/_types.h index bf4b95760..234e65281 100644 --- a/libc/arch-x86_64/include/machine/_types.h +++ b/libc/arch-x86_64/include/machine/_types.h @@ -62,10 +62,8 @@ typedef short __int16_t; typedef unsigned short __uint16_t; typedef int __int32_t; typedef unsigned int __uint32_t; -/* LONGLONG */ -typedef long long __int64_t; -/* LONGLONG */ -typedef unsigned long long __uint64_t; +typedef long __int64_t; +typedef unsigned long __uint64_t; /* 7.18.1.2 Minimum-width integer types */ typedef __int8_t __int_least8_t;