freebsd-dev/gnu/lib/libmalloc
Rich Murphey adb52cac6c merge free.c realloc.c into malloc.c so that all three are linked in
if any are referenced.

libc's malloc.o contains malloc(), free() and realloc().  And libc
refers to realloc which will cause the linker to pull in redundant
malloc() and free() definitions from malloc.o if it isn't already
linked in from GNU malloc.  Rich
1993-10-19 18:22:37 +00:00
..
calloc.c This is gnu lib malloc from NetBSD verbatium, here is the version info 1993-09-24 13:03:39 +00:00
cfree.c This is gnu lib malloc from NetBSD verbatium, here is the version info 1993-09-24 13:03:39 +00:00
ChangeLog This is gnu lib malloc from NetBSD verbatium, here is the version info 1993-09-24 13:03:39 +00:00
COPYING.LIB This is gnu lib malloc from NetBSD verbatium, here is the version info 1993-09-24 13:03:39 +00:00
free.c This is gnu lib malloc from NetBSD verbatium, here is the version info 1993-09-24 13:03:39 +00:00
getpagesize.h This is gnu lib malloc from NetBSD verbatium, here is the version info 1993-09-24 13:03:39 +00:00
gmalloc-head.c This is gnu lib malloc from NetBSD verbatium, here is the version info 1993-09-24 13:03:39 +00:00
Makefile merge free.c realloc.c into malloc.c so that all three are linked in 1993-10-19 18:22:37 +00:00
Makefile.gnu This is gnu lib malloc from NetBSD verbatium, here is the version info 1993-09-24 13:03:39 +00:00
malloc.c merge free.c realloc.c into malloc.c so that all three are linked in 1993-10-19 18:22:37 +00:00
malloc.h This is gnu lib malloc from NetBSD verbatium, here is the version info 1993-09-24 13:03:39 +00:00
mcheck.c This is gnu lib malloc from NetBSD verbatium, here is the version info 1993-09-24 13:03:39 +00:00
mem-limits.h This is gnu lib malloc from NetBSD verbatium, here is the version info 1993-09-24 13:03:39 +00:00
memalign.c This is gnu lib malloc from NetBSD verbatium, here is the version info 1993-09-24 13:03:39 +00:00
morecore.c This is gnu lib malloc from NetBSD verbatium, here is the version info 1993-09-24 13:03:39 +00:00
mstats.c This is gnu lib malloc from NetBSD verbatium, here is the version info 1993-09-24 13:03:39 +00:00
mtrace.awk This is gnu lib malloc from NetBSD verbatium, here is the version info 1993-09-24 13:03:39 +00:00
mtrace.c This is gnu lib malloc from NetBSD verbatium, here is the version info 1993-09-24 13:03:39 +00:00
OChangeLog This is gnu lib malloc from NetBSD verbatium, here is the version info 1993-09-24 13:03:39 +00:00
ralloc.c This is gnu lib malloc from NetBSD verbatium, here is the version info 1993-09-24 13:03:39 +00:00
README This is gnu lib malloc from NetBSD verbatium, here is the version info 1993-09-24 13:03:39 +00:00
realloc.c This is gnu lib malloc from NetBSD verbatium, here is the version info 1993-09-24 13:03:39 +00:00
valloc.c This is gnu lib malloc from NetBSD verbatium, here is the version info 1993-09-24 13:03:39 +00:00
VERSION This is gnu lib malloc from NetBSD verbatium, here is the version info 1993-09-24 13:03:39 +00:00
vm-limit.c This is gnu lib malloc from NetBSD verbatium, here is the version info 1993-09-24 13:03:39 +00:00

This is the standalone distribution of GNU malloc.
GNU malloc is part of the GNU C Library, but is also distributed separately.

If you find bugs in GNU malloc, send reports to bug-glibc@prep.ai.mit.edu.

GNU malloc is free software.  See the file COPYING.LIB for copying conditions.

The makefile builds libmalloc.a and gmalloc.o.  If you are using GNU malloc
to replace your system's existing malloc package, it is important to make
sure you get all GNU functions, not some of the GNU functions and some from
the system library.  gmalloc.o has all the functions in one file, so using
that will make sure you don't accidentally mix the two malloc packages.