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