From 86fff69f622c1e9e07dbc9b9d81bd35b9ddb1759 Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Mon, 30 Oct 2000 01:08:58 +0000 Subject: * libc/include/stdlib.h: Avoid declaring cfree under Cygwin. * libc/include/malloc.h: Ditto. Also remove obsolete declaration. --- newlib/libc/include/malloc.h | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) (limited to 'newlib/libc/include/malloc.h') diff --git a/newlib/libc/include/malloc.h b/newlib/libc/include/malloc.h index fa4527cd5..90f877f6f 100644 --- a/newlib/libc/include/malloc.h +++ b/newlib/libc/include/malloc.h @@ -70,25 +70,15 @@ extern _PTR _pvalloc_r _PARAMS ((struct _reent *, size_t)); extern int malloc_trim _PARAMS ((size_t)); extern int _malloc_trim_r _PARAMS ((struct _reent *, size_t)); -/* Some systems provide this, so do too for compatibility. */ - -extern void cfree _PARAMS ((_PTR)); - /* A compatibility routine for an earlier version of the allocator. */ extern _VOID mstats _PARAMS ((char *)); extern _VOID _mstats_r _PARAMS ((struct _reent *, char *)); -#ifdef __CYGWIN__ - -/* Cygwin32 needs to be able to copy all the malloc information from - the parent to the child. However, cygwin32 does not normally copy - any data in the DLL data section. This routine handles copying - that information. */ - -extern int __malloc_copy _PARAMS ((int (*) (void *, void *, void *, int), - void *, int)); -#endif /* __CYGWIN */ +#ifndef __CYGWIN__ +/* Some systems provide this, so do too for compatibility. */ +extern void cfree _PARAMS ((_PTR)); +#endif /* __CYGWIN__ */ #ifdef __cplusplus } -- cgit v1.2.3