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 /string/endian.h | |
parent | 0e8529e94f4e2e457dc145c1c4aa4736a7c81ea5 (diff) | |
download | glibc-6a57d93130924487bd58b3d80dabd421d4fbbe4f.tar.gz |
Remove __GLIBC_HAVE_LONG_LONG.
Diffstat (limited to 'string/endian.h')
-rw-r--r-- | string/endian.h | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/string/endian.h b/string/endian.h index 9ae5f2dd7a..f414cb1503 100644 --- a/string/endian.h +++ b/string/endian.h @@ -70,12 +70,10 @@ # define be32toh(x) __bswap_32 (x) # define le32toh(x) (x) -# if __GLIBC_HAVE_LONG_LONG -# define htobe64(x) __bswap_64 (x) -# define htole64(x) (x) -# define be64toh(x) __bswap_64 (x) -# define le64toh(x) (x) -# endif +# define htobe64(x) __bswap_64 (x) +# define htole64(x) (x) +# define be64toh(x) __bswap_64 (x) +# define le64toh(x) (x) # else # define htobe16(x) (x) @@ -88,12 +86,10 @@ # define be32toh(x) (x) # define le32toh(x) __bswap_32 (x) -# if __GLIBC_HAVE_LONG_LONG -# define htobe64(x) (x) -# define htole64(x) __bswap_64 (x) -# define be64toh(x) (x) -# define le64toh(x) __bswap_64 (x) -# endif +# define htobe64(x) (x) +# define htole64(x) __bswap_64 (x) +# define be64toh(x) (x) +# define le64toh(x) __bswap_64 (x) # endif #endif |