X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=src%2Fnetwork%2Fntohs.c;h=745cef425a1947f119880d499e7829146e049470;hp=3544a4798cfc43ea3f6fe8cddd698c78d66a0279;hb=695111036821f73870d8d7b4ba072368fc8f7941;hpb=0b44a0315b47dd8eced9f3b7f31580cf14bbfc01 diff --git a/src/network/ntohs.c b/src/network/ntohs.c index 3544a479..745cef42 100644 --- a/src/network/ntohs.c +++ b/src/network/ntohs.c @@ -1,10 +1,8 @@ #include +#include uint16_t ntohs(uint16_t n) { - union { - uint16_t s; - uint8_t b[2]; - } u = { n }; - return (u.b[0]<<8) | u.b[1]; + union { int i; char c; } u = { 1 }; + return u.c ? bswap_16(n) : n; }