blob: cce7f2c7685ecdb92a50ecd9295dad6550be2714 [file] [log] [blame]
#include <byteswap.h>
#include <netinet/in.h>
uint16_t ntohs(uint16_t n) {
union {
int i;
char c;
} u = {1};
return u.c ? bswap_16(n) : n;
}