mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
c037100747
We'll maintain it in the c-toxcore repo, where it belongs.
7 lines
144 B
C
7 lines
144 B
C
#ifdef __APPLE__
|
|
#include <libkern/OSByteOrder.h>
|
|
|
|
#define htobe64(x) OSSwapHostToBigInt64(x)
|
|
#define be64toh(x) OSSwapBigToHostInt64(x)
|
|
#endif
|