summaryrefslogtreecommitdiff
path: root/testing/hstox/byteswap.h
blob: 58d99570478a49d855ab7356339b11ae5f3f05b8 (plain)
1
2
3
4
5
6
7
8
9
10
#if defined(__APPLE__)
#include <libkern/OSByteOrder.h>

#define htobe64(x) OSSwapHostToBigInt64(x)
#define be64toh(x) OSSwapBigToHostInt64(x)
#elif defined (__FreeBSD__)
#include <sys/endian.h>
#else
#include <endian.h>
#endif