pollution: x static __inline __uint16_t __swap16md(__uint16_t x) { return ((__uint16_t)(((__uint16_t)(x) & 0xffU) << 8 | ((__uint16_t)(x) & 0xff00U) >> 8)); } pollution: x static __inline __uint32_t __swap32md(__uint32_t x) { return ((__uint32_t)(((__uint32_t)(x) & 0xff) << 24 | ((__uint32_t)(x) & 0xff00) << 8 | ((__uint32_t)(x) & 0xff0000) >> 8 | ((__uint32_t)(x) & 0xff000000) >> 24)); } pollution: x static __inline __uint64_t __swap64md(__uint64_t x) { return ((__uint64_t)((((__uint64_t)(x) & 0xff) << 56) | ((__uint64_t)(x) & 0xff00ULL) << 40 | ((__uint64_t)(x) & 0xff0000ULL) << 24 | ((__uint64_t)(x) & 0xff000000ULL) << 8 | ((__uint64_t)(x) & 0xff00000000ULL) >> 8 | ((__uint64_t)(x) & 0xff0000000000ULL) >> 24 | ((__uint64_t)(x) & 0xff000000000000ULL) >> 40 | ((__uint64_t)(x) & 0xff00000000000000ULL) >> 56)); } pollution: daylight extern int daylight; pollution: timezone extern long timezone; pollution: strptime char *strptime(const char *__restrict, const char *__restrict, struct tm *__restrict); pollution: asctime_r char *asctime_r(const struct tm *__restrict, char *__restrict) __attribute__ ((__bounded__(__minbytes__,2,26))); pollution: ctime_r char *ctime_r(const time_t *, char *) __attribute__ ((__bounded__(__minbytes__,2,26))); pollution: CLOCKS_PER_SEC #define CLOCKS_PER_SEC 100