diff options
author | 2014-05-08 21:43:49 +0000 | |
---|---|---|
committer | 2014-05-08 21:43:49 +0000 | |
commit | 91c2a70715ef3ba4fe719d27609670f8fca87f6b (patch) | |
tree | 256e064794b1cce03b9bb28b714746f0eafb28ad /lib/libc/stdlib/Makefile.inc | |
parent | Format string fixes and removal of -Wno-format for landisk kernels (diff) | |
download | wireguard-openbsd-91c2a70715ef3ba4fe719d27609670f8fca87f6b.tar.xz wireguard-openbsd-91c2a70715ef3ba4fe719d27609670f8fca87f6b.zip |
move reallocarray() to a seperate file so that -portable applications
can avoid reinventing the wheel
ok guenther schwarze
Diffstat (limited to 'lib/libc/stdlib/Makefile.inc')
-rw-r--r-- | lib/libc/stdlib/Makefile.inc | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/lib/libc/stdlib/Makefile.inc b/lib/libc/stdlib/Makefile.inc index 83b42c34e3d..80c3e5f5a1e 100644 --- a/lib/libc/stdlib/Makefile.inc +++ b/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 |