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