From 353f4a0ed3d5f37bef6edec29db87275dc7842ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miodrag=20Popovi=C4=87?= Date: Fri, 17 Jul 2020 23:31:19 +0200 Subject: [PATCH] malloc.h header is glibc specific, not found on Mac --- src/wallet/wallet.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index b80a17a..35d60bc 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -35,7 +35,9 @@ #include #include +#if defined(__GLIBC__) #include +#endif using namespace std; using namespace libzcash;