add PTHREAD_NULL
[musl.git] / src / network / ntohs.c
blob745cef425a1947f119880d499e7829146e049470
1 #include <netinet/in.h>
2 #include <byteswap.h>
4 uint16_t ntohs(uint16_t n)
6 union { int i; char c; } u = { 1 };
7 return u.c ? bswap_16(n) : n;