1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-28 00:21:52 +03:00

malloc: Turn cfree into a compatibility symbol

This commit is contained in:
Florian Weimer
2017-04-18 11:50:58 +02:00
parent 6c6ab1fc49
commit 025b33ae84
7 changed files with 17 additions and 19 deletions

View File

@ -425,11 +425,6 @@ extern void *realloc (void *__ptr, size_t __size)
/* Free a block allocated by `malloc', `realloc' or `calloc'. */
extern void free (void *__ptr) __THROW;
#ifdef __USE_MISC
/* Free a block. An alias for `free'. (Sun Unices). */
extern void cfree (void *__ptr) __THROW;
#endif /* Use misc. */
#ifdef __USE_MISC
# include <alloca.h>
#endif /* Use misc. */