summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortedu <>2014-12-08 20:39:16 +0000
committertedu <>2014-12-08 20:39:16 +0000
commit7b81cbd1372883712540c8afbb10388fd0b84655 (patch)
tree305fa87d05494fc406b7b55bf9e4213378903c6f /src
parent10acb2de70dd4a4b42dd0d116bac4d41520e3ca5 (diff)
downloadopenbsd-7b81cbd1372883712540c8afbb10388fd0b84655.tar.gz
openbsd-7b81cbd1372883712540c8afbb10388fd0b84655.tar.bz2
openbsd-7b81cbd1372883712540c8afbb10388fd0b84655.zip
delete obsolete sunos cfree function. ok deraadt millert naddy
Diffstat (limited to 'src')
-rw-r--r--src/lib/libc/stdlib/Makefile.inc6
-rw-r--r--src/lib/libc/stdlib/cfree.c39
2 files changed, 3 insertions, 42 deletions
diff --git a/src/lib/libc/stdlib/Makefile.inc b/src/lib/libc/stdlib/Makefile.inc
index e95ff11ed6..3a13d9ff1a 100644
--- a/src/lib/libc/stdlib/Makefile.inc
+++ b/src/lib/libc/stdlib/Makefile.inc
@@ -1,10 +1,10 @@
1# $OpenBSD: Makefile.inc,v 1.55 2014/12/06 18:54:55 schwarze Exp $ 1# $OpenBSD: Makefile.inc,v 1.56 2014/12/08 20:39:16 tedu Exp $
2 2
3# stdlib sources 3# stdlib sources
4.PATH: ${LIBCSRCDIR}/arch/${MACHINE_CPU}/stdlib ${LIBCSRCDIR}/stdlib 4.PATH: ${LIBCSRCDIR}/arch/${MACHINE_CPU}/stdlib ${LIBCSRCDIR}/stdlib
5 5
6SRCS+= a64l.c abort.c atexit.c atoi.c atof.c atol.c atoll.c bsearch.c \ 6SRCS+= a64l.c abort.c atexit.c atoi.c atof.c atol.c atoll.c bsearch.c \
7 cfree.c exit.c ecvt.c gcvt.c getenv.c getopt_long.c \ 7 exit.c ecvt.c gcvt.c getenv.c getopt_long.c \
8 getsubopt.c hcreate.c heapsort.c imaxabs.c imaxdiv.c insque.c \ 8 getsubopt.c hcreate.c heapsort.c imaxabs.c imaxdiv.c insque.c \
9 l64a.c llabs.c lldiv.c lsearch.c malloc.c reallocarray.c \ 9 l64a.c llabs.c lldiv.c lsearch.c malloc.c reallocarray.c \
10 merge.c posix_pty.c qsort.c radixsort.c rand.c random.c \ 10 merge.c posix_pty.c qsort.c radixsort.c rand.c random.c \
@@ -40,7 +40,7 @@ MLINKS+=insque.3 remque.3
40MLINKS+=labs.3 llabs.3 40MLINKS+=labs.3 llabs.3
41MLINKS+=lsearch.3 lfind.3 41MLINKS+=lsearch.3 lfind.3
42MLINKS+=malloc.3 free.3 malloc.3 realloc.3 malloc.3 calloc.3 42MLINKS+=malloc.3 free.3 malloc.3 realloc.3 malloc.3 calloc.3
43MLINKS+=malloc.3 reallocarray.3 malloc.3 cfree.3 43MLINKS+=malloc.3 reallocarray.3
44MLINKS+=qsort.3 heapsort.3 qsort.3 mergesort.3 44MLINKS+=qsort.3 heapsort.3 qsort.3 mergesort.3
45MLINKS+=radixsort.3 sradixsort.3 45MLINKS+=radixsort.3 sradixsort.3
46MLINKS+=rand.3 srand.3 rand.3 rand_r.3 46MLINKS+=rand.3 srand.3 rand.3 rand_r.3
diff --git a/src/lib/libc/stdlib/cfree.c b/src/lib/libc/stdlib/cfree.c
deleted file mode 100644
index acf6d1c8ac..0000000000
--- a/src/lib/libc/stdlib/cfree.c
+++ /dev/null
@@ -1,39 +0,0 @@
1/* $OpenBSD: cfree.c,v 1.6 2012/12/05 23:20:01 deraadt Exp $ */
2
3/*
4 * Copyright (c) 1996 SigmaSoft, Th. Lockert <tholo@sigmasoft.com>
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 *
16 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
17 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
18 * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
19 * THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
20 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
21 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
22 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
23 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
24 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
25 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
27
28#include <stdlib.h>
29
30#ifdef __indr_reference
31__indr_reference(free, cfree);
32#else
33
34void
35cfree(void *p)
36{
37 free(p);
38}
39#endif