summaryrefslogtreecommitdiffstats
path: root/lib/libc
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>1999-11-10 20:13:12 +0000
committermillert <millert@openbsd.org>1999-11-10 20:13:12 +0000
commit346b9d2d6c2c357cc6f587cb3dd85c08d0cb6f10 (patch)
tree091e636943a0dbe053ee86ab0fc109caf1547d87 /lib/libc
parentcalloc() needs to be separate from malloc in case a user wants to have (diff)
downloadwireguard-openbsd-346b9d2d6c2c357cc6f587cb3dd85c08d0cb6f10.tar.xz
wireguard-openbsd-346b9d2d6c2c357cc6f587cb3dd85c08d0cb6f10.zip
calloc.c is back
Diffstat (limited to 'lib/libc')
-rw-r--r--lib/libc/stdlib/Makefile.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/stdlib/Makefile.inc b/lib/libc/stdlib/Makefile.inc
index 9765082276c..aa811dd9e34 100644
--- a/lib/libc/stdlib/Makefile.inc
+++ b/lib/libc/stdlib/Makefile.inc
@@ -3,7 +3,7 @@
# stdlib sources
.PATH: ${LIBCSRCDIR}/arch/${MACHINE_ARCH}/stdlib ${LIBCSRCDIR}/stdlib
-SRCS+= a64l.c abort.c atexit.c atoi.c atof.c atol.c bsearch.c \
+SRCS+= a64l.c abort.c atexit.c atoi.c atof.c atol.c bsearch.c calloc.c \
cfree.c exit.c getenv.c getopt.c getsubopt.c heapsort.c l64a.c \
malloc.c merge.c multibyte.c putenv.c qsort.c radixsort.c rand.c \
random.c realpath.c setenv.c strtod.c strtol.c strtoq.c strtoul.c \