Attepting to fix typing issue on Mac.

This commit is contained in:
David Dawes
2018-05-26 12:37:20 -07:00
parent bcb23c06e7
commit 4532d437a4

View File

@@ -25,7 +25,13 @@
#include <assert.h> #include <assert.h>
typedef uint16_t u16; typedef uint16_t u16;
#ifdef _WIN32
typedef unsigned long long u64;
#elif __linux__
typedef uint64_t u64; typedef uint64_t u64;
#else
typedef unsigned long u64;
#endif
#ifdef EQUIHASH_TROMP_ATOMIC #ifdef EQUIHASH_TROMP_ATOMIC
#include <atomic> #include <atomic>