Merge pull request #16 from echom/master
wrapping ntohll in ifndef for mac
This commit is contained in:
commit
6e74d4f1af
|
@ -36,12 +36,14 @@ typedef struct {
|
|||
PowArgs* pow_args;
|
||||
} ThreadArgs;
|
||||
|
||||
#ifndef ntohll
|
||||
inline uint64_t ntohll(uint64_t x) {
|
||||
return (
|
||||
((uint64_t)(ntohl( (unsigned int)((x << 32) >> 32) )) << 32) |
|
||||
ntohl( ((unsigned int)(x >> 32)) )
|
||||
);
|
||||
}
|
||||
#endif
|
||||
|
||||
// Set POW computation result in a thread-safe way.
|
||||
void set_result(PowArgs* pow_args, PowResult res, uint64_t nonce) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user