blob: d2c2320f0ab9c19c3e4c3a1308fc3635c52b6002 [file] [log] [blame]
/*
* netinet/in.h
*/
#ifndef _NETINET_IN_H
#define _NETINET_IN_H
#include <stdint.h>
#include <endian.h> /* Must be included *before* <linux/in.h> */
#include <linux/in.h>
#define htons(x) __cpu_to_be16(x)
#define ntohs(x) __be16_to_cpu(x)
#define htonl(x) __cpu_to_be32(x)
#define ntohl(x) __be32_to_cpu(x)
#endif /* _NETINET_IN_H */