aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/config.h.post
diff options
context:
space:
mode:
Diffstat (limited to 'config.h.post')
-rw-r--r--config.h.post10
1 files changed, 10 insertions, 0 deletions
diff --git a/config.h.post b/config.h.post
index 3cdf9a78..62ce4ea6 100644
--- a/config.h.post
+++ b/config.h.post
@@ -15,6 +15,16 @@
# endif
#endif
+#if defined(__APPLE__)
+# define htobe32(x) OSSwapHostToBigInt32(x)
+# define betoh32(x) OSSwapBigToHostInt32(x)
+# define htobe64(x) OSSwapHostToBigInt64(x)
+# define betoh64(x) OSSwapBigToHostInt64(x)
+#elif defined(__linux__)
+# define betoh32(x) be32toh(x)
+# define betoh64(x) be64toh(x)
+#endif
+
#ifndef HAVE_STRLCAT
extern size_t strlcat(char *, const char *, size_t);
#endif