summaryrefslogtreecommitdiff
path: root/src/lib/libc/stdlib/Makefile.inc
diff options
context:
space:
mode:
authortholo <>1996-08-21 03:47:22 +0000
committertholo <>1996-08-21 03:47:22 +0000
commit70d6156a73ae27fbf89cf08192330fc31f2a222e (patch)
tree31109ed62e2a75bd0e8f4f4eab3a6bb668683fe0 /src/lib/libc/stdlib/Makefile.inc
parent163f78c63c472ad6cbe0db6494906dc135203fdc (diff)
downloadopenbsd-70d6156a73ae27fbf89cf08192330fc31f2a222e.tar.gz
openbsd-70d6156a73ae27fbf89cf08192330fc31f2a222e.tar.bz2
openbsd-70d6156a73ae27fbf89cf08192330fc31f2a222e.zip
Move cfree(3) weak symbol into a seperate file
Diffstat (limited to 'src/lib/libc/stdlib/Makefile.inc')
-rw-r--r--src/lib/libc/stdlib/Makefile.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libc/stdlib/Makefile.inc b/src/lib/libc/stdlib/Makefile.inc
index bc8fb87dff..f224baed54 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.5 1996/08/21 03:17:55 downsj Exp $ 1# $OpenBSD: Makefile.inc,v 1.6 1996/08/21 03:47:21 tholo Exp $
2 2
3# stdlib sources 3# stdlib sources
4.PATH: ${.CURDIR}/arch/${MACHINE_ARCH}/stdlib ${.CURDIR}/stdlib 4.PATH: ${.CURDIR}/arch/${MACHINE_ARCH}/stdlib ${.CURDIR}/stdlib
5 5
6SRCS+= a64l.c abort.c atexit.c atoi.c atof.c atol.c bsearch.c calloc.c \ 6SRCS+= a64l.c abort.c atexit.c atoi.c atof.c atol.c bsearch.c calloc.c \
7 exit.c getenv.c getopt.c heapsort.c l64a.c malloc.c merge.c \ 7 cfree.c exit.c getenv.c getopt.c heapsort.c l64a.c malloc.c merge.c \
8 multibyte.c putenv.c qsort.c radixsort.c rand.c random.c realpath.c \ 8 multibyte.c putenv.c qsort.c radixsort.c rand.c random.c realpath.c \
9 setenv.c strtod.c strtol.c strtoq.c strtoul.c strtouq.c system.c \ 9 setenv.c strtod.c strtol.c strtoq.c strtoul.c strtouq.c system.c \
10 _rand48.c drand48.c erand48.c jrand48.c lcong48.c lrand48.c \ 10 _rand48.c drand48.c erand48.c jrand48.c lcong48.c lrand48.c \