4#include <sys/priority.h>
13#ifndef _BYTEORDER_PROTOTYPED
14#define _BYTEORDER_PROTOTYPED
16__uint32_t htonl(__uint32_t);
17__uint16_t htons(__uint16_t);
18__uint32_t ntohl(__uint32_t);
19__uint16_t ntohs(__uint16_t);
23#ifndef _BYTEORDER_FUNC_DEFINED
24#define _BYTEORDER_FUNC_DEFINED
25#define htonl(x) __htonl(x)
26#define htons(x) __htons(x)
27#define ntohl(x) __ntohl(x)
28#define ntohs(x) __ntohs(x)