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