about summary refs log tree commit diff
path: root/string/byteswap.h
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2013-01-11 21:13:25 +0000
committerJoseph Myers <joseph@codesourcery.com>2013-01-11 21:13:25 +0000
commit6a57d93130924487bd58b3d80dabd421d4fbbe4f (patch)
treee10ddd2b9ab102398e117e683fb6dcac1c96fa32 /string/byteswap.h
parent0e8529e94f4e2e457dc145c1c4aa4736a7c81ea5 (diff)
downloadglibc-6a57d93130924487bd58b3d80dabd421d4fbbe4f.tar.gz
glibc-6a57d93130924487bd58b3d80dabd421d4fbbe4f.tar.xz
glibc-6a57d93130924487bd58b3d80dabd421d4fbbe4f.zip
Remove __GLIBC_HAVE_LONG_LONG.
Diffstat (limited to 'string/byteswap.h')
-rw-r--r--string/byteswap.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/string/byteswap.h b/string/byteswap.h
index a31e902bee..705015f055 100644
--- a/string/byteswap.h
+++ b/string/byteswap.h
@@ -33,9 +33,7 @@
 /* Return a value with all bytes in the 32 bit argument swapped.  */
 #define bswap_32(x) __bswap_32 (x)
 
-#if __GLIBC_HAVE_LONG_LONG
 /* Return a value with all bytes in the 64 bit argument swapped.  */
-# define bswap_64(x) __bswap_64 (x)
-#endif
+#define bswap_64(x) __bswap_64 (x)
 
 #endif /* byteswap.h */