mirror of
https://github.com/TokTok/c-toxcore
synced 2026-05-14 12:35:14 +00: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
|