summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2022-04-01 13:05:55 +0200
committerGravatar Nikias Bassen2022-04-01 13:05:55 +0200
commit5fdb83e34dbd4ac2bf6c4ff9da1b4048d849aa06 (patch)
tree73043bfd77a9361ef9484082d9bcf80c8c6d098b /include
parent1ac34c189d8e9cc7b05b17004066f6ae48afc19f (diff)
downloadlibimobiledevice-5fdb83e34dbd4ac2bf6c4ff9da1b4048d849aa06.tar.gz
libimobiledevice-5fdb83e34dbd4ac2bf6c4ff9da1b4048d849aa06.tar.bz2
include: Update endianness.h with changes from limd-glue
The changes don't affect libimobiledevice itself but I don't want to have different versions of the same file across multiple repositories :)
Diffstat (limited to 'include')
-rw-r--r--include/endianness.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/endianness.h b/include/endianness.h
index 099877a..88b63db 100644
--- a/include/endianness.h
+++ b/include/endianness.h
@@ -113,8 +113,8 @@
&& !defined(__FLOAT_WORD_ORDER__)) \
|| (defined(__FLOAT_WORD_ORDER__) \
&& __FLOAT_WORD_ORDER__ == __ORDER_BIG_ENDIAN__)
-#define float_bswap64(x) bswap64(x)
-#define float_bswap32(x) bswap32(x)
+#define float_bswap64(x) __bswap_64(x)
+#define float_bswap32(x) __bswap_32(x)
#else
#define float_bswap64(x) (x)
#define float_bswap32(x) (x)