diff options
author | Vojtech Bocek <vbocek@gmail.com> | 2013-02-24 01:40:19 +0100 |
---|---|---|
committer | Dees_Troy <dees_troy@teamw.in> | 2013-02-27 22:59:21 +0100 |
commit | 7cc278bb99ad9c9ea540a3e096592d5586e4c986 (patch) | |
tree | e4d8665c0aa4703c1fddfa69bdd119efd7da3d83 /libblkid/bitops.h | |
parent | fixes for fakeflash zips (diff) | |
download | android_bootable_recovery-7cc278bb99ad9c9ea540a3e096592d5586e4c986.tar android_bootable_recovery-7cc278bb99ad9c9ea540a3e096592d5586e4c986.tar.gz android_bootable_recovery-7cc278bb99ad9c9ea540a3e096592d5586e4c986.tar.bz2 android_bootable_recovery-7cc278bb99ad9c9ea540a3e096592d5586e4c986.tar.lz android_bootable_recovery-7cc278bb99ad9c9ea540a3e096592d5586e4c986.tar.xz android_bootable_recovery-7cc278bb99ad9c9ea540a3e096592d5586e4c986.tar.zst android_bootable_recovery-7cc278bb99ad9c9ea540a3e096592d5586e4c986.zip |
Diffstat (limited to 'libblkid/bitops.h')
-rw-r--r-- | libblkid/bitops.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libblkid/bitops.h b/libblkid/bitops.h index 288fe715c..7439ece91 100644 --- a/libblkid/bitops.h +++ b/libblkid/bitops.h @@ -56,15 +56,15 @@ //#ifndef htobe16 //# if !defined(WORDS_BIGENDIAN) -# define htobe16(x) bswap_16 (x) +//# define htobe16(x) bswap_16 (x) # define htole16(x) (x) # define be16toh(x) bswap_16 (x) # define le16toh(x) (x) -# define htobe32(x) bswap_32 (x) +//# define htobe32(x) bswap_32 (x) # define htole32(x) (x) # define be32toh(x) bswap_32 (x) # define le32toh(x) (x) -# define htobe64(x) bswap_64 (x) +//# define htobe64(x) bswap_64 (x) # define htole64(x) (x) # define be64toh(x) bswap_64 (x) # define le64toh(x) (x) |