summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormillert <>1999-11-10 20:13:12 +0000
committermillert <>1999-11-10 20:13:12 +0000
commit810b959a836a5797cd808c2cb2d7380a3569d8e5 (patch)
treea51371cd5c0cb98d4268bcf39f38d925d3e25347 /src
parent97d0d1b9cdde83cad131a8958b37c806ca2ae6c8 (diff)
downloadopenbsd-810b959a836a5797cd808c2cb2d7380a3569d8e5.tar.gz
openbsd-810b959a836a5797cd808c2cb2d7380a3569d8e5.tar.bz2
openbsd-810b959a836a5797cd808c2cb2d7380a3569d8e5.zip
calloc.c is back
Diffstat (limited to 'src')
-rw-r--r--src/lib/libc/stdlib/Makefile.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/libc/stdlib/Makefile.inc b/src/lib/libc/stdlib/Makefile.inc
index 9765082276..aa811dd9e3 100644
--- a/src/lib/libc/stdlib/Makefile.inc
+++ b/src/lib/libc/stdlib/Makefile.inc
@@ -3,7 +3,7 @@
3# stdlib sources 3# stdlib sources
4.PATH: ${LIBCSRCDIR}/arch/${MACHINE_ARCH}/stdlib ${LIBCSRCDIR}/stdlib 4.PATH: ${LIBCSRCDIR}/arch/${MACHINE_ARCH}/stdlib ${LIBCSRCDIR}/stdlib
5 5
6SRCS+= a64l.c abort.c atexit.c atoi.c atof.c atol.c bsearch.c \ 6SRCS+= a64l.c abort.c atexit.c atoi.c atof.c atol.c bsearch.c calloc.c \
7 cfree.c exit.c getenv.c getopt.c getsubopt.c heapsort.c l64a.c \ 7 cfree.c exit.c getenv.c getopt.c getsubopt.c heapsort.c l64a.c \
8 malloc.c merge.c multibyte.c putenv.c qsort.c radixsort.c rand.c \ 8 malloc.c merge.c multibyte.c putenv.c qsort.c radixsort.c rand.c \
9 random.c realpath.c setenv.c strtod.c strtol.c strtoq.c strtoul.c \ 9 random.c realpath.c setenv.c strtod.c strtol.c strtoq.c strtoul.c \