From d1997a41f09a130b2d0122aa1acbeea0ecead4b3 Mon Sep 17 00:00:00 2001 From: jmc <> Date: Tue, 10 Feb 2004 20:04:00 +0000 Subject: [PATCH] kill memory.3; suggested by deraadt@ --- src/lib/libc/stdlib/Makefile.inc | 2 +- src/lib/libc/stdlib/memory.3 | 65 -------------------------------- 2 files changed, 1 insertion(+), 66 deletions(-) delete mode 100644 src/lib/libc/stdlib/memory.3 diff --git a/src/lib/libc/stdlib/Makefile.inc b/src/lib/libc/stdlib/Makefile.inc index ad460943..74f8ff5e 100644 --- a/src/lib/libc/stdlib/Makefile.inc +++ b/src/lib/libc/stdlib/Makefile.inc @@ -40,7 +40,7 @@ SRCS+= insque.c remque.c MAN+= a64l.3 abort.3 abs.3 alloca.3 atexit.3 atof.3 atoi.3 atol.3 atoll.3 \ bsearch.3 div.3 ecvt.3 exit.3 getenv.3 getopt.3 getopt_long.3 \ - getsubopt.3 insque.3 labs.3 ldiv.3 lsearch.3 malloc.3 memory.3 qabs.3 \ + getsubopt.3 insque.3 labs.3 ldiv.3 lsearch.3 malloc.3 qabs.3 \ qdiv.3 qsort.3 radixsort.3 rand48.3 rand.3 random.3 realpath.3 \ strtod.3 strtol.3 strtoul.3 system.3 tsearch.3 diff --git a/src/lib/libc/stdlib/memory.3 b/src/lib/libc/stdlib/memory.3 deleted file mode 100644 index 84996f76..00000000 --- a/src/lib/libc/stdlib/memory.3 +++ /dev/null @@ -1,65 +0,0 @@ -.\" Copyright (c) 1991 Regents of the University of California. -.\" All rights reserved. -.\" -.\" Redistribution and use in source and binary forms, with or without -.\" modification, are permitted provided that the following conditions -.\" are met: -.\" 1. Redistributions of source code must retain the above copyright -.\" notice, this list of conditions and the following disclaimer. -.\" 2. Redistributions in binary form must reproduce the above copyright -.\" notice, this list of conditions and the following disclaimer in the -.\" documentation and/or other materials provided with the distribution. -.\" 3. Neither the name of the University nor the names of its contributors -.\" may be used to endorse or promote products derived from this software -.\" without specific prior written permission. -.\" -.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND -.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE -.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -.\" SUCH DAMAGE. -.\" -.\" $OpenBSD: memory.3,v 1.6 2003/06/02 20:18:38 millert Exp $ -.\" -.Dd May 2, 1991 -.Dt MEMORY 3 -.Os -.Sh NAME -.Nm malloc , -.Nm free , -.Nm realloc , -.Nm calloc , -.Nm alloca -.Nd general memory allocation operations -.Sh SYNOPSIS -.Fd #include -.Ft void * -.Fn malloc "size_t size" -.Ft void -.Fn free "void *ptr" -.Ft void * -.Fn realloc "void *ptr" "size_t size" -.Ft void * -.Fn calloc "size_t nelem" "size_t elsize" -.Ft void * -.Fn alloca "size_t size" -.Sh DESCRIPTION -These functions allocate and free memory for the calling process. -They are described in the individual man pages. -.Sh SEE ALSO -.Xr alloca 3 , -.Xr calloc 3 , -.Xr free 3 , -.Xr malloc 3 , -.Xr realloc 3 -.Sh STANDARDS -These functions, with the exception of -.Fn alloca , -conform to -.St -ansiC .