From f8025cada9e6a6089ad2b35cd5c3aea632882804 Mon Sep 17 00:00:00 2001 From: fluffypony Date: Tue, 2 Sep 2014 12:08:27 +0200 Subject: [PATCH] fixed OS X malloc.h reference --- src/crypto/oaes_lib.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/crypto/oaes_lib.c b/src/crypto/oaes_lib.c index f3f2aac8..81c8aeff 100644 --- a/src/crypto/oaes_lib.c +++ b/src/crypto/oaes_lib.c @@ -34,11 +34,14 @@ static const char _NR[] = { #include #include #include -#include #include #include #include +#ifndef __APPLE__ +#include +#endif + #ifdef WIN32 #include #else