eina mp: only include malloc.h on linux

Elsewhere, everything is in stdlib.h.

@fix
This commit is contained in:
Daniel Kolesa 2016-01-07 15:31:59 +00:00
parent f836aba678
commit dadc350507
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@
# include <assert.h>
#endif
#ifdef EINA_DEBUG_MALLOC
#if defined(EINA_DEBUG_MALLOC) && defined(__linux__)
# include <malloc.h>
#endif