#pragma once
#include <libkern/OSByteOrder.h>
#include <mach/vm_statistics.h>
#include <pthread.h>
#define bswap_32(x) OSSwapInt32(x)
#define bswap_64(x) OSSwapInt64(x)
#define ENVIRON NULL
__attribute__((weak)) void _pthread_tsd_cleanup(pthread_t);
void _pthread_tsd_cleanup(pthread_t p)
{
(void)p;
}