From owner-cvs-lib Tue Jul 1 11:43:51 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id LAA13878 for cvs-lib-outgoing; Tue, 1 Jul 1997 11:43:51 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id LAA13713; Tue, 1 Jul 1997 11:41:37 -0700 (PDT) From: Poul-Henning Kamp Received: (from phk@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id LAA29263; Tue, 1 Jul 1997 11:39:41 -0700 (PDT) Date: Tue, 1 Jul 1997 11:39:41 -0700 (PDT) Message-Id: <199707011839.LAA29263@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc/stdlib calloc.c Makefile.inc malloc.3 malloc.c Sender: owner-cvs-lib@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk phk 1997/07/01 11:39:41 PDT Modified files: lib/libc/stdlib Makefile.inc malloc.3 malloc.c Added files: lib/libc/stdlib calloc.c Log: malloc_sysv used before initialized, reported in PR4002 by Dmitrij Tejblum 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 Submitted by: Keith Bostic Revision Changes Path 1.10 +2 -2 src/lib/libc/stdlib/Makefile.inc 1.13 +15 -5 src/lib/libc/stdlib/malloc.3 1.27 +19 -33 src/lib/libc/stdlib/malloc.c