From 6a57d93130924487bd58b3d80dabd421d4fbbe4f Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Fri, 11 Jan 2013 21:13:25 +0000 Subject: Remove __GLIBC_HAVE_LONG_LONG. --- posix/sys/types.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'posix') diff --git a/posix/sys/types.h b/posix/sys/types.h index b36b561dba..33c2176d0f 100644 --- a/posix/sys/types.h +++ b/posix/sys/types.h @@ -164,7 +164,7 @@ typedef short int int16_t; typedef int int32_t; # if __WORDSIZE == 64 typedef long int int64_t; -# elif __GLIBC_HAVE_LONG_LONG +# else __extension__ typedef long long int int64_t; # endif # endif @@ -175,7 +175,7 @@ typedef unsigned short int u_int16_t; typedef unsigned int u_int32_t; # if __WORDSIZE == 64 typedef unsigned long int u_int64_t; -# elif __GLIBC_HAVE_LONG_LONG +# else __extension__ typedef unsigned long long int u_int64_t; # endif -- cgit 1.4.1