diff options
Diffstat (limited to 'malloc/malloc.c')
-rw-r--r-- | malloc/malloc.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/malloc/malloc.c b/malloc/malloc.c index cd40626504..0440be5c22 100644 --- a/malloc/malloc.c +++ b/malloc/malloc.c @@ -516,6 +516,9 @@ Void_t *(*__morecore)(ptrdiff_t) = __default_morecore; #if (__STD_C || defined(HAVE_MEMCPY)) +#ifdef _LIBC +# include <string.h> +#else #ifdef WIN32 /* On Win32 memset and memcpy are already declared in windows.h */ #else @@ -528,6 +531,7 @@ Void_t* memcpy(); #endif #endif #endif +#endif /* MALLOC_FAILURE_ACTION is the action to take before "return 0" when |