1
0
Fork 0
forked from lthn/blockchain

Fixed build for macos

This commit is contained in:
cryptozoidberg 2020-09-08 17:07:24 +02:00
parent a239f62a99
commit 125a7be3c5
No known key found for this signature in database
GPG key ID: 22DEB97A54C6FDEC

View file

@ -132,8 +132,10 @@ extern int cacheflush(char *addr, int nbytes, int cache);
#ifdef _WIN32
typedef int64_t off64_t;
#elif __APPLE__
typedef off_t off64_t;
#else
//typedef off_t off64_t;
#endif