blob: fc27343b1d6f471945423e1890ddea197379d886 [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;
}