From dadc3505078a672fccee4cb771f79cfcb0201e46 Mon Sep 17 00:00:00 2001 From: Daniel Kolesa Date: Thu, 7 Jan 2016 15:31:59 +0000 Subject: [PATCH] eina mp: only include malloc.h on linux Elsewhere, everything is in stdlib.h. @fix --- src/modules/eina/mp/chained_pool/eina_chained_mempool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/eina/mp/chained_pool/eina_chained_mempool.c b/src/modules/eina/mp/chained_pool/eina_chained_mempool.c index 5c916e7ef1..8c64c48036 100644 --- a/src/modules/eina/mp/chained_pool/eina_chained_mempool.c +++ b/src/modules/eina/mp/chained_pool/eina_chained_mempool.c @@ -27,7 +27,7 @@ # include #endif -#ifdef EINA_DEBUG_MALLOC +#if defined(EINA_DEBUG_MALLOC) && defined(__linux__) # include #endif