aboutsummaryrefslogtreecommitdiff
path: root/src/compat
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2018-07-11 15:14:29 +0800
committerfanquake <fanquake@gmail.com>2018-07-25 07:30:28 +0800
commit3828a797115a879705085ccbb373e607def61234 (patch)
tree528cd0f9f194b5abc47a875f0aae5ba7148e8eb6 /src/compat
parentfa6e841e89d164850dcfb6efe5b03992594c1ca3 (diff)
downloadbitcoin-3828a797115a879705085ccbb373e607def61234.tar.xz
scripted-diff: prefer MAC_OSX over __APPLE__
-BEGIN VERIFY SCRIPT- sed -i 's/__APPLE__/MAC_OSX/g' src/compat/byteswap.h src/util.cpp -END VERIFY SCRIPT-
Diffstat (limited to 'src/compat')
-rw-r--r--src/compat/byteswap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compat/byteswap.h b/src/compat/byteswap.h
index c331af2b5e..bfb80bd632 100644
--- a/src/compat/byteswap.h
+++ b/src/compat/byteswap.h
@@ -15,7 +15,7 @@
#include <byteswap.h>
#endif
-#if defined(__APPLE__)
+#if defined(MAC_OSX)
#if !defined(bswap_16)
@@ -61,6 +61,6 @@ inline uint64_t bswap_64(uint64_t x)
}
#endif // HAVE_DECL_BSWAP64 == 0
-#endif // defined(__APPLE__)
+#endif // defined(MAC_OSX)
#endif // BITCOIN_COMPAT_BYTESWAP_H