summaryrefslogtreecommitdiffstats
path: root/libc-top-half/musl/src/network/htonl.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc-top-half/musl/src/network/htonl.c')
-rw-r--r--libc-top-half/musl/src/network/htonl.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/libc-top-half/musl/src/network/htonl.c b/libc-top-half/musl/src/network/htonl.c
new file mode 100644
index 0000000..6622d16
--- /dev/null
+++ b/libc-top-half/musl/src/network/htonl.c
@@ -0,0 +1,8 @@
+#include <netinet/in.h>
+#include <byteswap.h>
+
+uint32_t htonl(uint32_t n)
+{
+ union { int i; char c; } u = { 1 };
+ return u.c ? bswap_32(n) : n;
+}