mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
b782ef5d8e
Also some minor reformatting and fixes to the hstox sut driver.
9 lines
170 B
C
9 lines
170 B
C
#ifdef __APPLE__
|
|
#include <libkern/OSByteOrder.h>
|
|
|
|
#define htobe64(x) OSSwapHostToBigInt64(x)
|
|
#define be64toh(x) OSSwapBigToHostInt64(x)
|
|
#else
|
|
#include <endian.h>
|
|
#endif
|