From 33358740f4110cf9382eb33a4dfdc83361a91241 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miodrag=20Popovi=C4=87?= Date: Tue, 21 Jul 2020 10:26:42 +0200 Subject: [PATCH] malloc.h conditional inclusion malloc.h header is also glibc specific --- src/wallet/wallet.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index 3c7040b45..3a0bc389c 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -49,7 +49,9 @@ #include #include +#if defined(__GLIBC__) #include +#endif using namespace std; using namespace libzcash;