<sys/endian.h>

Change-Id: I0148722ecd96f88e4bc5c08b23c7997166ddb976
This commit is contained in:
Ben Gras 2013-12-11 00:27:26 +01:00 committed by Lionel Sambuc
parent 0222260628
commit 7d303e6311

View file

@ -127,10 +127,10 @@ __END_DECLS
#define htonl(x) bswap32(__CAST(uint32_t, (x)))
#define htons(x) bswap16(__CAST(uint16_t, (x)))
#define NTOHL(x) ntohl(__CAST(uint32_t, (x)))
#define NTOHS(x) ntohs(__CAST(uint16_t, (x)))
#define HTONL(x) htonl(__CAST(uint32_t, (x)))
#define HTONS(x) htons(__CAST(uint16_t, (x)))
#define NTOHL(x) (x) = ntohl(__CAST(uint32_t, (x)))
#define NTOHS(x) (x) = ntohs(__CAST(uint16_t, (x)))
#define HTONL(x) (x) = htonl(__CAST(uint32_t, (x)))
#define HTONS(x) (x) = htons(__CAST(uint16_t, (x)))
#endif /* LITTLE_ENDIAN || !defined(__lint__) */
/*