blob: 51bf2f5321ecd5c0b2682179b59642bcc9448515 [file] [log] [blame]
#include <byteswap.h>
#include <netinet/in.h>
uint32_t ntohl(uint32_t n) {
union {
int i;
char c;
} u = {1};
return u.c ? bswap_32(n) : n;
}