diff options
author | Joseph Myers <joseph@codesourcery.com> | 2013-01-11 21:13:25 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2013-01-11 21:13:25 +0000 |
commit | 6a57d93130924487bd58b3d80dabd421d4fbbe4f (patch) | |
tree | e10ddd2b9ab102398e117e683fb6dcac1c96fa32 /posix/sys | |
parent | 0e8529e94f4e2e457dc145c1c4aa4736a7c81ea5 (diff) | |
download | glibc-6a57d93130924487bd58b3d80dabd421d4fbbe4f.tar.gz glibc-6a57d93130924487bd58b3d80dabd421d4fbbe4f.tar.xz glibc-6a57d93130924487bd58b3d80dabd421d4fbbe4f.zip |
Remove __GLIBC_HAVE_LONG_LONG.
Diffstat (limited to 'posix/sys')
-rw-r--r-- | posix/sys/types.h | 4 |
1 files changed, 2 insertions, 2 deletions
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 |