From 83d3c0e95b4ce510dc22db2810b8fc5d0519c62a Mon Sep 17 00:00:00 2001 From: deraadt <> Date: Thu, 8 May 2014 21:43:49 +0000 Subject: move reallocarray() to a seperate file so that -portable applications can avoid reinventing the wheel ok guenther schwarze --- src/lib/libc/stdlib/Makefile.inc | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'src/lib/libc/stdlib/Makefile.inc') diff --git a/src/lib/libc/stdlib/Makefile.inc b/src/lib/libc/stdlib/Makefile.inc index 83b42c34e3..80c3e5f5a1 100644 --- a/src/lib/libc/stdlib/Makefile.inc +++ b/src/lib/libc/stdlib/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.52 2014/04/22 14:26:26 tedu Exp $ +# $OpenBSD: Makefile.inc,v 1.53 2014/05/08 21:43:49 deraadt Exp $ # stdlib sources .PATH: ${LIBCSRCDIR}/arch/${MACHINE_CPU}/stdlib ${LIBCSRCDIR}/stdlib @@ -6,11 +6,12 @@ SRCS+= a64l.c abort.c atexit.c atoi.c atof.c atol.c atoll.c bsearch.c \ cfree.c exit.c ecvt.c gcvt.c getenv.c getopt_long.c \ getsubopt.c hcreate.c heapsort.c imaxabs.c imaxdiv.c l64a.c llabs.c \ - lldiv.c lsearch.c malloc.c merge.c posix_pty.c qsort.c radixsort.c \ - rand.c random.c realpath.c setenv.c strtoimax.c strtol.c \ - strtoll.c strtonum.c strtoul.c strtoull.c strtoumax.c system.c \ - tfind.c tsearch.c _rand48.c drand48.c erand48.c jrand48.c lcong48.c \ - lrand48.c mrand48.c nrand48.c seed48.c srand48.c qabs.c qdiv.c _Exit.c + lldiv.c lsearch.c malloc.c reallocarray.c merge.c posix_pty.c \ + qsort.c radixsort.c rand.c random.c realpath.c setenv.c strtoimax.c \ + strtol.c strtoll.c strtonum.c strtoul.c strtoull.c strtoumax.c \ + system.c tfind.c tsearch.c _rand48.c drand48.c erand48.c jrand48.c \ + lcong48.c lrand48.c mrand48.c nrand48.c seed48.c srand48.c qabs.c \ + qdiv.c _Exit.c .if (${MACHINE_CPU} == "i386") SRCS+= abs.S div.S labs.S ldiv.S -- cgit v1.2.3-55-g6feb