mirror of
https://github.com/TokTok/c-toxcore
synced 2026-06-07 08:52:44 +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
|