diff options
| author | fluffypony <ric@spagni.net> | 2014-09-09 14:07:57 +0200 |
|---|---|---|
| committer | fluffypony <ric@spagni.net> | 2014-09-09 14:07:57 +0200 |
| commit | e1d31e0a8b59fd74829f790e97c75e7a530b86df (patch) | |
| tree | fd7dd2cb82d40124737c754020ef83033d6db3aa /src | |
| parent | 5a6599148018aa6b3557834acd47465064ad3bfc (diff) | |
| download | monzero-core-e1d31e0a8b59fd74829f790e97c75e7a530b86df.tar.gz monzero-core-e1d31e0a8b59fd74829f790e97c75e7a530b86df.tar.xz monzero-core-e1d31e0a8b59fd74829f790e97c75e7a530b86df.zip | |
malloc.h reference fixed for FreeBSD
Diffstat (limited to 'src')
| -rw-r--r-- | src/crypto/oaes_lib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/crypto/oaes_lib.c b/src/crypto/oaes_lib.c index 81c8aeff2..1dce99edd 100644 --- a/src/crypto/oaes_lib.c +++ b/src/crypto/oaes_lib.c @@ -38,8 +38,8 @@ static const char _NR[] = { #include <stdlib.h> #include <stdio.h> -#ifndef __APPLE__ -#include <malloc.h> +#ifndef __APPLE__ || __FREEBSD__ + #include <malloc.h> #endif #ifdef WIN32 |
