diff options
author | phk <phk@FreeBSD.org> | 1997-07-01 18:39:38 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1997-07-01 18:39:38 +0000 |
commit | a4c209850278391123f7d7565de09fd98e6afcec (patch) | |
tree | 2c88b1fb23a14c6fbb18ee2eb5aec8089f975677 /lib/libc/stdlib/Makefile.inc | |
parent | a10c1a2949114029b4375969b9303841d9a19235 (diff) | |
download | FreeBSD-src-a4c209850278391123f7d7565de09fd98e6afcec.zip FreeBSD-src-a4c209850278391123f7d7565de09fd98e6afcec.tar.gz |
malloc_sysv used before initialized, reported in PR4002 by
Dmitrij Tejblum <dima@tejblum.dnttm.rssi.ru>
Various cleanup from Keith Bostic
Reinstate calloc() as a separate funtion, in its own source/object file.
leave the manpage integrated with malloc.3 and friends. Too many things
were broken in this respect.
PR: 4002
Reviewed by: phk
Submitted by: Dmitrij Tejblum <dima@tejblum.dnttm.rssi.ru>
Submitted by: Keith Bostic <bostic@bostic.com>
Diffstat (limited to 'lib/libc/stdlib/Makefile.inc')
-rw-r--r-- | lib/libc/stdlib/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdlib/Makefile.inc b/lib/libc/stdlib/Makefile.inc index 980dd57..58842bf 100644 --- a/lib/libc/stdlib/Makefile.inc +++ b/lib/libc/stdlib/Makefile.inc @@ -1,10 +1,10 @@ # from @(#)Makefile.inc 8.3 (Berkeley) 2/4/95 -# $Id: Makefile.inc,v 1.8 1997/05/03 03:50:04 jb Exp $ +# $Id: Makefile.inc,v 1.9 1997/06/22 17:54:24 phk Exp $ # machine-independent stdlib sources .PATH: ${.CURDIR}/../libc/${MACHINE}/stdlib ${.CURDIR}/../libc/stdlib -SRCS+= abort.c atexit.c atof.c atoi.c atol.c bsearch.c div.c \ +SRCS+= abort.c atexit.c atof.c atoi.c atol.c bsearch.c calloc.c div.c \ exit.c getenv.c getopt.c getsubopt.c strhash.c heapsort.c labs.c \ ldiv.c malloc.c merge.c putenv.c qsort.c radixsort.c rand.c random.c \ realpath.c setenv.c strtod.c strtol.c strtoq.c strtoul.c \ |