diff options
author | Florian Weimer <fweimer@redhat.com> | 2017-04-18 11:50:58 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2017-04-18 11:50:58 +0200 |
commit | 025b33ae84bb8f15b2748a1d8605dca453fce112 (patch) | |
tree | 2bb47e51512665a67018d8ed07e99b6401544a89 /stdlib/stdlib.h | |
parent | 6c6ab1fc49d524ab1892cb20ee74352ace0b8034 (diff) | |
download | glibc-025b33ae84bb8f15b2748a1d8605dca453fce112.tar glibc-025b33ae84bb8f15b2748a1d8605dca453fce112.tar.gz glibc-025b33ae84bb8f15b2748a1d8605dca453fce112.tar.bz2 glibc-025b33ae84bb8f15b2748a1d8605dca453fce112.zip |
malloc: Turn cfree into a compatibility symbol
Diffstat (limited to 'stdlib/stdlib.h')
-rw-r--r-- | stdlib/stdlib.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/stdlib/stdlib.h b/stdlib/stdlib.h index c1f389253a..99125f2d23 100644 --- a/stdlib/stdlib.h +++ b/stdlib/stdlib.h @@ -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. */ |