diff options
Diffstat (limited to 'sysdeps/unix/sysv/linux/netinet/in.h')
-rw-r--r-- | sysdeps/unix/sysv/linux/netinet/in.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/linux/netinet/in.h b/sysdeps/unix/sysv/linux/netinet/in.h index a0b8714fd6..9ba2bdd5cb 100644 --- a/sysdeps/unix/sysv/linux/netinet/in.h +++ b/sysdeps/unix/sysv/linux/netinet/in.h @@ -93,9 +93,13 @@ extern unsigned short int htons __P ((unsigned short int)); #if __BYTE_ORDER == __BIG_ENDIAN /* The host byte order is the same as network byte order, so these functions are all just identity. */ +#undef ntohl #define ntohl(x) (x) +#undef ntohs #define ntohs(x) (x) +#undef htonl #define htonl(x) (x) +#undef htons #define htons(x) (x) #endif |