pollution: htonl
__uint32_t htonl(__uint32_t) __attribute__((__const__)); 

pollution: htons
__uint16_t htons(__uint16_t) __attribute__((__const__)); 

pollution: ntohl
__uint32_t ntohl(__uint32_t) __attribute__((__const__)); 

pollution: ntohs
__uint16_t ntohs(__uint16_t) __attribute__((__const__)); 

pollution: x
static __inline __uint32_t __byte_swap_u32_variable(__uint32_t x) { __asm volatile ( "bswap %1" : "=r" (x) : "0" (x)); return (x); }

pollution: x
static __inline __uint16_t __byte_swap_u16_variable(__uint16_t x) { __asm volatile ("rorw $8, %w1" : "=r" (x) : "0" (x)); return (x); }

pollution: bswap16
__uint16_t bswap16(__uint16_t) __asm("__bswap16") __attribute__((__const__)); 

pollution: bswap32
__uint32_t bswap32(__uint32_t) __asm("__bswap32") __attribute__((__const__)); 

pollution: bswap64
__uint64_t bswap64(__uint64_t) __attribute__((__const__)); 

pollution: dst
pollution: u
pollution: be16enc
static __inline __attribute__((__unused__)) void be16enc(void *dst, __uint16_t u) { u = ((__uint16_t)(__builtin_constant_p((((__uint16_t)((u))))) ? (((__uint16_t)(((((((__uint16_t)((u)))) & 0xff00) >> 8) | (((((__uint16_t)((u)))) & 0x00ff) << 8))))) : __byte_swap_u16_variable(((__uint16_t)((u)))))); __builtin_memcpy(dst, &u, sizeof(u)); }

pollution: dst
pollution: u
pollution: be32enc
static __inline __attribute__((__unused__)) void be32enc(void *dst, __uint32_t u) { u = ((__uint32_t)(__builtin_constant_p((((__uint32_t)((u))))) ? (((__uint32_t)(((((((__uint32_t)((u)))) & 0xff000000) >> 24) | (((((__uint32_t)((u)))) & 0x00ff0000) >> 8) | (((((__uint32_t)((u)))) & 0x0000ff00) << 8) | (((((__uint32_t)((u)))) & 0x000000ff) << 24))))) : __byte_swap_u32_variable(((__uint32_t)((u)))))); __builtin_memcpy(dst, &u, sizeof(u)); }

pollution: dst
pollution: u
pollution: be64enc
static __inline __attribute__((__unused__)) void be64enc(void *dst, __uint64_t u) { u = ((__uint64_t)(__builtin_constant_p((((__uint64_t)((u))))) ? (((__uint64_t)(((((((__uint64_t)((u)))) & 0xff00000000000000ull) >> 56) | (((((__uint64_t)((u)))) & 0x00ff000000000000ull) >> 40) | (((((__uint64_t)((u)))) & 0x0000ff0000000000ull) >> 24) | (((((__uint64_t)((u)))) & 0x000000ff00000000ull) >> 8) | (((((__uint64_t)((u)))) & 0x00000000ff000000ull) << 8) | (((((__uint64_t)((u)))) & 0x0000000000ff0000ull) << 24) | (((((__uint64_t)((u)))) & 0x000000000000ff00ull) << 40) | (((((__uint64_t)((u)))) & 0x00000000000000ffull) << 56))))) : bswap64(((__uint64_t)((u)))))); __builtin_memcpy(dst, &u, sizeof(u)); }

pollution: dst
pollution: u
pollution: le16enc
static __inline __attribute__((__unused__)) void le16enc(void *dst, __uint16_t u) { u = (u); __builtin_memcpy(dst, &u, sizeof(u)); }

pollution: dst
pollution: u
pollution: le32enc
static __inline __attribute__((__unused__)) void le32enc(void *dst, __uint32_t u) { u = (u); __builtin_memcpy(dst, &u, sizeof(u)); }

pollution: dst
pollution: u
pollution: le64enc
static __inline __attribute__((__unused__)) void le64enc(void *dst, __uint64_t u) { u = (u); __builtin_memcpy(dst, &u, sizeof(u)); }

pollution: buf
pollution: be16dec
static __inline __attribute__((__unused__)) __uint16_t be16dec(const void *buf) { __uint16_t u; __builtin_memcpy(&u, buf, sizeof(u)); return ((__uint16_t)(__builtin_constant_p((((__uint16_t)((u))))) ? (((__uint16_t)(((((((__uint16_t)((u)))) & 0xff00) >> 8) | (((((__uint16_t)((u)))) & 0x00ff) << 8))))) : __byte_swap_u16_variable(((__uint16_t)((u)))))); }

pollution: buf
pollution: be32dec
static __inline __attribute__((__unused__)) __uint32_t be32dec(const void *buf) { __uint32_t u; __builtin_memcpy(&u, buf, sizeof(u)); return ((__uint32_t)(__builtin_constant_p((((__uint32_t)((u))))) ? (((__uint32_t)(((((((__uint32_t)((u)))) & 0xff000000) >> 24) | (((((__uint32_t)((u)))) & 0x00ff0000) >> 8) | (((((__uint32_t)((u)))) & 0x0000ff00) << 8) | (((((__uint32_t)((u)))) & 0x000000ff) << 24))))) : __byte_swap_u32_variable(((__uint32_t)((u)))))); }

pollution: buf
pollution: be64dec
static __inline __attribute__((__unused__)) __uint64_t be64dec(const void *buf) { __uint64_t u; __builtin_memcpy(&u, buf, sizeof(u)); return ((__uint64_t)(__builtin_constant_p((((__uint64_t)((u))))) ? (((__uint64_t)(((((((__uint64_t)((u)))) & 0xff00000000000000ull) >> 56) | (((((__uint64_t)((u)))) & 0x00ff000000000000ull) >> 40) | (((((__uint64_t)((u)))) & 0x0000ff0000000000ull) >> 24) | (((((__uint64_t)((u)))) & 0x000000ff00000000ull) >> 8) | (((((__uint64_t)((u)))) & 0x00000000ff000000ull) << 8) | (((((__uint64_t)((u)))) & 0x0000000000ff0000ull) << 24) | (((((__uint64_t)((u)))) & 0x000000000000ff00ull) << 40) | (((((__uint64_t)((u)))) & 0x00000000000000ffull) << 56))))) : bswap64(((__uint64_t)((u)))))); }

pollution: buf
pollution: le16dec
static __inline __attribute__((__unused__)) __uint16_t le16dec(const void *buf) { __uint16_t u; __builtin_memcpy(&u, buf, sizeof(u)); return (u); }

pollution: buf
pollution: le32dec
static __inline __attribute__((__unused__)) __uint32_t le32dec(const void *buf) { __uint32_t u; __builtin_memcpy(&u, buf, sizeof(u)); return (u); }

pollution: buf
pollution: le64dec
static __inline __attribute__((__unused__)) __uint64_t le64dec(const void *buf) { __uint64_t u; __builtin_memcpy(&u, buf, sizeof(u)); return (u); }

pollution: data
void *data; 

pollution: size
size_t size; 

pollution: DBT
typedef struct { void *data; size_t size; } DBT; 

pollution: DB_BTREE
pollution: DB_HASH
pollution: DB_RECNO
pollution: DBTYPE
typedef enum { DB_BTREE, DB_HASH, DB_RECNO } DBTYPE; 

pollution: type
DBTYPE type; 

pollution: close
int (*close) (struct __db *); 

pollution: del
int (*del) (const struct __db *, const DBT *, unsigned int); 

pollution: get
int (*get) (const struct __db *, const DBT *, DBT *, unsigned int); 

pollution: put
int (*put) (const struct __db *, DBT *, const DBT *, unsigned int); 

pollution: seq
int (*seq) (const struct __db *, DBT *, DBT *, unsigned int); 

pollution: sync
int (*sync) (const struct __db *, unsigned int); 

pollution: internal
void *internal; 

pollution: fd
int (*fd) (const struct __db *); 

pollution: DB
typedef struct __db { DBTYPE type; int (*close) (struct __db *); int (*del) (const struct __db *, const DBT *, unsigned int); int (*get) (const struct __db *, const DBT *, DBT *, unsigned int); int (*put) (const struct __db *, DBT *, const DBT *, unsigned int); int (*seq) (const struct __db *, DBT *, DBT *, unsigned int); int (*sync) (const struct __db *, unsigned int); void *internal; int (*fd) (const struct __db *); } DB; 

pollution: flags
unsigned long flags; 

pollution: cachesize
unsigned int cachesize; 

pollution: maxkeypage
int maxkeypage; 

pollution: minkeypage
int minkeypage; 

pollution: psize
unsigned int psize; 

pollution: compare
int (*compare) (const DBT *, const DBT *); 

pollution: prefix
size_t (*prefix) (const DBT *, const DBT *); 

pollution: lorder
int lorder; 

pollution: BTREEINFO
typedef struct { unsigned long flags; unsigned int cachesize; int maxkeypage; int minkeypage; unsigned int psize; int (*compare) (const DBT *, const DBT *); size_t (*prefix) (const DBT *, const DBT *); int lorder; } BTREEINFO; 

pollution: bsize
unsigned int bsize; 

pollution: ffactor
unsigned int ffactor; 

pollution: nelem
unsigned int nelem; 

pollution: cachesize
unsigned int cachesize; 

pollution: hash
__uint32_t (*hash)(const void *, size_t); 

pollution: lorder
int lorder; 

pollution: HASHINFO
typedef struct { unsigned int bsize; unsigned int ffactor; unsigned int nelem; unsigned int cachesize; __uint32_t (*hash)(const void *, size_t); int lorder; } HASHINFO; 

pollution: flags
unsigned long flags; 

pollution: cachesize
unsigned int cachesize; 

pollution: psize
unsigned int psize; 

pollution: lorder
int lorder; 

pollution: reclen
size_t reclen; 

pollution: bval
__uint8_t bval; 

pollution: bfname
char *bfname; 

pollution: RECNOINFO
typedef struct { unsigned long flags; unsigned int cachesize; unsigned int psize; int lorder; size_t reclen; __uint8_t bval; char *bfname; } RECNOINFO; 

pollution: dbopen
DB *dbopen(const char *, int, __mode_t, DBTYPE, const void *); 

pollution: ARG_MAX
#define ARG_MAX (256 * 1024)

pollution: BC_BASE_MAX
#define BC_BASE_MAX INT_MAX

pollution: BC_DIM_MAX
#define BC_DIM_MAX 65535

pollution: BC_SCALE_MAX
#define BC_SCALE_MAX INT_MAX

pollution: BC_STRING_MAX
#define BC_STRING_MAX INT_MAX

pollution: BE16TOH
#define BE16TOH(x) HTOBE16(x)

pollution: BE32TOH
#define BE32TOH(x) HTOBE32(x)

pollution: BE64TOH
#define BE64TOH(x) HTOBE64(x)

pollution: BIG_ENDIAN
#define BIG_ENDIAN 4321

pollution: BTREEMAGIC
#define BTREEMAGIC 0x053162

pollution: BTREEVERSION
#define BTREEVERSION 3

pollution: BYTE_ORDER
#define BYTE_ORDER _BYTE_ORDER

pollution: CHARCLASS_NAME_MAX
#define CHARCLASS_NAME_MAX 14

pollution: CHAR_BIT
#define CHAR_BIT 8

pollution: CHAR_MAX
#define CHAR_MAX SCHAR_MAX

pollution: CHAR_MIN
#define CHAR_MIN SCHAR_MIN

pollution: CHILD_MAX
#define CHILD_MAX 160

pollution: COLL_WEIGHTS_MAX
#define COLL_WEIGHTS_MAX 2

pollution: DBL_DIG
#define DBL_DIG __DBL_DIG__

pollution: DBL_MAX
#define DBL_MAX __DBL_MAX__

pollution: DBL_MIN
#define DBL_MIN __DBL_MIN__

pollution: DB_LOCK
#define DB_LOCK 0x20000000

pollution: DB_SHMEM
#define DB_SHMEM 0x40000000

pollution: DB_TXN
#define DB_TXN 0x80000000

pollution: EXPR_NEST_MAX
#define EXPR_NEST_MAX 32

pollution: FLT_DIG
#define FLT_DIG __FLT_DIG__

pollution: FLT_MAX
#define FLT_MAX __FLT_MAX__

pollution: FLT_MIN
#define FLT_MIN __FLT_MIN__

pollution: GID_MAX
#define GID_MAX 2147483647U

pollution: HASHMAGIC
#define HASHMAGIC 0x061561

pollution: HASHVERSION
#define HASHVERSION 2

pollution: HTOBE16
#define HTOBE16(x) (x) = bswap16(__CAST(uint16_t, (x)))

pollution: HTOBE32
#define HTOBE32(x) (x) = bswap32(__CAST(uint32_t, (x)))

pollution: HTOBE64
#define HTOBE64(x) (x) = bswap64(__CAST(uint64_t, (x)))

pollution: HTOLE16
#define HTOLE16(x) __CAST(void, (x))

pollution: HTOLE32
#define HTOLE32(x) __CAST(void, (x))

pollution: HTOLE64
#define HTOLE64(x) __CAST(void, (x))

pollution: HTONL
#define HTONL(x) (x) = htonl(__CAST(uint32_t, (x)))

pollution: HTONS
#define HTONS(x) (x) = htons(__CAST(uint16_t, (x)))

pollution: INT16_C
#define INT16_C(c) __int_join(c, __INT16_C_SUFFIX__)

pollution: INT16_MAX
#define INT16_MAX __INT16_MAX__

pollution: INT16_MIN
#define INT16_MIN (-__INT16_MAX__-1)

pollution: INT32_C
#define INT32_C(c) __int_join(c, __INT32_C_SUFFIX__)

pollution: INT32_MAX
#define INT32_MAX __INT32_MAX__

pollution: INT32_MIN
#define INT32_MIN (-__INT32_MAX__-1)

pollution: INT64_C
#define INT64_C(c) __int_join(c, __INT64_C_SUFFIX__)

pollution: INT64_MAX
#define INT64_MAX __INT64_MAX__

pollution: INT64_MIN
#define INT64_MIN (-__INT64_MAX__-1)

pollution: INT8_C
#define INT8_C(c) __int_join(c, __INT8_C_SUFFIX__)

pollution: INT8_MAX
#define INT8_MAX __INT8_MAX__

pollution: INT8_MIN
#define INT8_MIN (-__INT8_MAX__-1)

pollution: INTMAX_C
#define INTMAX_C(c) __int_join(c, __INTMAX_C_SUFFIX__)

pollution: INTMAX_MAX
#define INTMAX_MAX __INTMAX_MAX__

pollution: INTMAX_MIN
#define INTMAX_MIN (-__INTMAX_MAX__-1)

pollution: INTPTR_MAX
#define INTPTR_MAX __INTPTR_MAX__

pollution: INTPTR_MIN
#define INTPTR_MIN (-__INTPTR_MAX__-1)

pollution: INT_FAST16_MAX
#define INT_FAST16_MAX __INT_FAST16_MAX__

pollution: INT_FAST16_MIN
#define INT_FAST16_MIN (-__INT_FAST16_MAX__-1)

pollution: INT_FAST32_MAX
#define INT_FAST32_MAX __INT_FAST32_MAX__

pollution: INT_FAST32_MIN
#define INT_FAST32_MIN (-__INT_FAST32_MAX__-1)

pollution: INT_FAST64_MAX
#define INT_FAST64_MAX __INT_FAST64_MAX__

pollution: INT_FAST64_MIN
#define INT_FAST64_MIN (-__INT_FAST64_MAX__-1)

pollution: INT_FAST8_MAX
#define INT_FAST8_MAX __INT_FAST8_MAX__

pollution: INT_FAST8_MIN
#define INT_FAST8_MIN (-__INT_FAST8_MAX__-1)

pollution: INT_LEAST16_MAX
#define INT_LEAST16_MAX __INT_LEAST16_MAX__

pollution: INT_LEAST16_MIN
#define INT_LEAST16_MIN (-__INT_LEAST16_MAX__-1)

pollution: INT_LEAST32_MAX
#define INT_LEAST32_MAX __INT_LEAST32_MAX__

pollution: INT_LEAST32_MIN
#define INT_LEAST32_MIN (-__INT_LEAST32_MAX__-1)

pollution: INT_LEAST64_MAX
#define INT_LEAST64_MAX __INT_LEAST64_MAX__

pollution: INT_LEAST64_MIN
#define INT_LEAST64_MIN (-__INT_LEAST64_MAX__-1)

pollution: INT_LEAST8_MAX
#define INT_LEAST8_MAX __INT_LEAST8_MAX__

pollution: INT_LEAST8_MIN
#define INT_LEAST8_MIN (-__INT_LEAST8_MAX__-1)

pollution: INT_MAX
#define INT_MAX 0x7fffffff

pollution: INT_MIN
#define INT_MIN (-0x7fffffff-1)

pollution: IOV_MAX
#define IOV_MAX 1024

pollution: LE16TOH
#define LE16TOH(x) HTOLE16(x)

pollution: LE32TOH
#define LE32TOH(x) HTOLE32(x)

pollution: LE64TOH
#define LE64TOH(x) HTOLE64(x)

pollution: LINE_MAX
#define LINE_MAX 2048

pollution: LINK_MAX
#define LINK_MAX 32767

pollution: LITTLE_ENDIAN
#define LITTLE_ENDIAN 1234

pollution: LLONG_MAX
#define LLONG_MAX 0x7fffffffffffffffLL

pollution: LLONG_MIN
#define LLONG_MIN (-0x7fffffffffffffffLL-1)

pollution: LOGIN_NAME_MAX
#define LOGIN_NAME_MAX 17

pollution: LONG_BIT
#define LONG_BIT 32

pollution: LONG_MAX
#define LONG_MAX 0x7fffffffL

pollution: LONG_MIN
#define LONG_MIN (-0x7fffffffL-1)

pollution: MAX_CANON
#define MAX_CANON 255

pollution: MAX_INPUT
#define MAX_INPUT 255

pollution: MAX_PAGE_NUMBER
#define MAX_PAGE_NUMBER 0xffffffff

pollution: MAX_PAGE_OFFSET
#define MAX_PAGE_OFFSET 65535

pollution: MAX_REC_NUMBER
#define MAX_REC_NUMBER 0xffffffff

pollution: MB_LEN_MAX
#define MB_LEN_MAX 32

pollution: NAME_MAX
#define NAME_MAX 511

pollution: NGROUPS_MAX
#define NGROUPS_MAX 16

pollution: NL_ARGMAX
#define NL_ARGMAX 9

pollution: NL_LANGMAX
#define NL_LANGMAX 14

pollution: NL_MSGMAX
#define NL_MSGMAX 32767

pollution: NL_NMAX
#define NL_NMAX 1

pollution: NL_SETMAX
#define NL_SETMAX 255

pollution: NL_TEXTMAX
#define NL_TEXTMAX 2048

pollution: NTOHL
#define NTOHL(x) (x) = ntohl(__CAST(uint32_t, (x)))

pollution: NTOHS
#define NTOHS(x) (x) = ntohs(__CAST(uint16_t, (x)))

pollution: NZERO
#define NZERO 20

pollution: OPEN_MAX
#define OPEN_MAX 255

pollution: PASS_MAX
#define PASS_MAX 128

pollution: PATH_MAX
#define PATH_MAX 1024

pollution: PDP_ENDIAN
#define PDP_ENDIAN 3412

pollution: PIPE_BUF
#define PIPE_BUF 32768

pollution: PRIxREGISTER
#define PRIxREGISTER "x"

pollution: PTHREAD_DESTRUCTOR_ITERATIONS
#define PTHREAD_DESTRUCTOR_ITERATIONS _POSIX_THREAD_DESTRUCTOR_ITERATIONS

pollution: PTHREAD_KEYS_MAX
#define PTHREAD_KEYS_MAX 256

pollution: PTHREAD_THREADS_MAX
#define PTHREAD_THREADS_MAX _POSIX_THREAD_THREADS_MAX

pollution: PTRDIFF_MAX
#define PTRDIFF_MAX __PTRDIFF_MAX__

pollution: PTRDIFF_MIN
#define PTRDIFF_MIN (-__PTRDIFF_MAX__-1)

pollution: RET_ERROR
#define RET_ERROR -1

pollution: RET_SPECIAL
#define RET_SPECIAL 1

pollution: RET_SUCCESS
#define RET_SUCCESS 0

pollution: RE_DUP_MAX
#define RE_DUP_MAX 255

pollution: R_CURSOR
#define R_CURSOR 1

pollution: R_DUP
#define R_DUP 0x01

pollution: R_FIRST
#define R_FIRST 3

pollution: R_FIXEDLEN
#define R_FIXEDLEN 0x01

pollution: R_IAFTER
#define R_IAFTER 4

pollution: R_IBEFORE
#define R_IBEFORE 5

pollution: R_LAST
#define R_LAST 6

pollution: R_NEXT
#define R_NEXT 7

pollution: R_NOKEY
#define R_NOKEY 0x02

pollution: R_NOOVERWRITE
#define R_NOOVERWRITE 8

pollution: R_PREV
#define R_PREV 9

pollution: R_RECNOSYNC
#define R_RECNOSYNC 11

pollution: R_SETCURSOR
#define R_SETCURSOR 10

pollution: R_SNAPSHOT
#define R_SNAPSHOT 0x04

pollution: SCHAR_MAX
#define SCHAR_MAX 0x7f

pollution: SCHAR_MIN
#define SCHAR_MIN (-0x7f-1)

pollution: SHRT_MAX
#define SHRT_MAX 0x7fff

pollution: SHRT_MIN
#define SHRT_MIN (-0x7fff-1)

pollution: SIG_ATOMIC_MAX
#define SIG_ATOMIC_MAX __SIG_ATOMIC_MAX__

pollution: SIG_ATOMIC_MIN
#define SIG_ATOMIC_MIN (-__SIG_ATOMIC_MAX__-1)

pollution: SIZE_MAX
#define SIZE_MAX __SIZE_MAX__

pollution: SSIZE_MAX
#define SSIZE_MAX INT_MAX

pollution: TMP_MAX
#define TMP_MAX 308915776

pollution: UCHAR_MAX
#define UCHAR_MAX 0xff

pollution: UID_MAX
#define UID_MAX 2147483647U

pollution: UINT16_C
#define UINT16_C(c) __int_join(c, __UINT16_C_SUFFIX__)

pollution: UINT16_MAX
#define UINT16_MAX __UINT16_MAX__

pollution: UINT32_C
#define UINT32_C(c) __int_join(c, __UINT32_C_SUFFIX__)

pollution: UINT32_MAX
#define UINT32_MAX __UINT32_MAX__

pollution: UINT64_C
#define UINT64_C(c) __int_join(c, __UINT64_C_SUFFIX__)

pollution: UINT64_MAX
#define UINT64_MAX __UINT64_MAX__

pollution: UINT8_C
#define UINT8_C(c) __int_join(c, __UINT8_C_SUFFIX__)

pollution: UINT8_MAX
#define UINT8_MAX __UINT8_MAX__

pollution: UINTMAX_C
#define UINTMAX_C(c) __int_join(c, __UINTMAX_C_SUFFIX__)

pollution: UINTMAX_MAX
#define UINTMAX_MAX __UINTMAX_MAX__

pollution: UINTPTR_MAX
#define UINTPTR_MAX __UINTPTR_MAX__

pollution: UINT_FAST16_MAX
#define UINT_FAST16_MAX __UINT_FAST16_MAX__

pollution: UINT_FAST32_MAX
#define UINT_FAST32_MAX __UINT_FAST32_MAX__

pollution: UINT_FAST64_MAX
#define UINT_FAST64_MAX __UINT_FAST64_MAX__

pollution: UINT_FAST8_MAX
#define UINT_FAST8_MAX __UINT_FAST8_MAX__

pollution: UINT_LEAST16_MAX
#define UINT_LEAST16_MAX __UINT_LEAST16_MAX__

pollution: UINT_LEAST32_MAX
#define UINT_LEAST32_MAX __UINT_LEAST32_MAX__

pollution: UINT_LEAST64_MAX
#define UINT_LEAST64_MAX __UINT_LEAST64_MAX__

pollution: UINT_LEAST8_MAX
#define UINT_LEAST8_MAX __UINT_LEAST8_MAX__

pollution: UINT_MAX
#define UINT_MAX 0xffffffffU

pollution: ULLONG_MAX
#define ULLONG_MAX 0xffffffffffffffffULL

pollution: ULONG_MAX
#define ULONG_MAX 0xffffffffUL

pollution: USHRT_MAX
#define USHRT_MAX 0xffff

pollution: WCHAR_MAX
#define WCHAR_MAX 0x7fffffff

pollution: WCHAR_MIN
#define WCHAR_MIN (-0x7fffffff-1)

pollution: WINT_MAX
#define WINT_MAX 0x7fffffff

pollution: WINT_MIN
#define WINT_MIN (-0x7fffffff-1)

pollution: WORD_BIT
#define WORD_BIT 32

pollution: be16toh
#define be16toh(x) htobe16(x)

pollution: be32toh
#define be32toh(x) htobe32(x)

pollution: be64toh
#define be64toh(x) htobe64(x)

pollution: bswap16
#define bswap16(x) __CAST(uint16_t, __builtin_constant_p((x)) ? __byte_swap_u16_constant(x) : __BYTE_SWAP_U16_VARIABLE(x))

pollution: bswap32
#define bswap32(x) __CAST(uint32_t, __builtin_constant_p((x)) ? __byte_swap_u32_constant(x) : __BYTE_SWAP_U32_VARIABLE(x))

pollution: bswap64
#define bswap64(x) __CAST(uint64_t, __builtin_constant_p((x)) ? __byte_swap_u64_constant(x) : __BYTE_SWAP_U64_VARIABLE(x))

pollution: htobe16
#define htobe16(x) bswap16(__CAST(uint16_t, (x)))

pollution: htobe32
#define htobe32(x) bswap32(__CAST(uint32_t, (x)))

pollution: htobe64
#define htobe64(x) bswap64(__CAST(uint64_t, (x)))

pollution: htole16
#define htole16(x) (x)

pollution: htole32
#define htole32(x) (x)

pollution: htole64
#define htole64(x) (x)

pollution: htonl
#define htonl(x) bswap32(__CAST(uint32_t, (x)))

pollution: htons
#define htons(x) bswap16(__CAST(uint16_t, (x)))

pollution: le16toh
#define le16toh(x) htole16(x)

pollution: le32toh
#define le32toh(x) htole32(x)

pollution: le64toh
#define le64toh(x) htole64(x)

pollution: ntohl
#define ntohl(x) bswap32(__CAST(uint32_t, (x)))

pollution: ntohs
#define ntohs(x) bswap16(__CAST(uint16_t, (x)))

