remove some stray trailing space characters
[musl] / src / network / ntohl.c
index 6437919..d6fce45 100644 (file)
@@ -1,10 +1,8 @@
 #include <netinet/in.h>
+#include <byteswap.h>
 
 uint32_t ntohl(uint32_t n)
 {
-       union {
-               uint32_t i;
-               uint8_t b[4];
-       } u = { n };
-       return (u.b[0]<<24) | (u.b[1]<<16) | (u.b[2]<<8) | u.b[3];
+       union { int i; char c; } u = { 1 };
+       return u.c ? bswap_32(n) : n;
 }