diff options
author | thomasvaughan <thomas@vaughan.net> | 2018-09-02 14:51:23 +0000 |
---|---|---|
committer | thomasvaughan <thomas@vaughan.net> | 2018-09-11 14:32:33 +0000 |
commit | bcda7adcd444cc72b5c0d02da65be6b5cd843fc2 (patch) | |
tree | 0a02c0b8c9ea34c32ced30e511338db0ca479e52 /src/crypto/tree-hash.c | |
parent | Merge pull request #4223 (diff) | |
download | monero-bcda7adcd444cc72b5c0d02da65be6b5cd843fc2.tar.xz |
NetBSD support
Diffstat (limited to 'src/crypto/tree-hash.c')
-rw-r--r-- | src/crypto/tree-hash.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/crypto/tree-hash.c b/src/crypto/tree-hash.c index 57c38b86b..b2dc3ffb2 100644 --- a/src/crypto/tree-hash.c +++ b/src/crypto/tree-hash.c @@ -36,7 +36,8 @@ #ifdef _MSC_VER #include <malloc.h> -#elif !defined(__FreeBSD__) && !defined(__OpenBSD__) && !defined(__DragonFly__) +#elif !defined(__FreeBSD__) && !defined(__OpenBSD__) && !defined(__DragonFly__) \ + && !defined(__NetBSD__) #include <alloca.h> #else #include <stdlib.h> |