From: Daniel Kolesa Date: Thu, 7 Jan 2016 15:31:59 +0000 (+0000) Subject: eina mp: only include malloc.h on linux X-Git-Tag: upstream/1.20.0~7703 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dadc3505078a672fccee4cb771f79cfcb0201e46;p=platform%2Fupstream%2Fefl.git eina mp: only include malloc.h on linux Elsewhere, everything is in stdlib.h. @fix --- 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 5c916e7..8c64c48 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