diff options
author | guenther <> | 2016-08-14 23:18:03 +0000 |
---|---|---|
committer | guenther <> | 2016-08-14 23:18:03 +0000 |
commit | bbd7863e9e2678e3ae2ce69690f0eb6f7dce138b (patch) | |
tree | 7e1cb514316cec6dc6c0898d75f4c612ad9ff229 /src/lib/libc/stdlib/Makefile.inc | |
parent | d375178b9a24f400dad1da5f563fce93ee621827 (diff) | |
download | openbsd-bbd7863e9e2678e3ae2ce69690f0eb6f7dce138b.tar.gz openbsd-bbd7863e9e2678e3ae2ce69690f0eb6f7dce138b.tar.bz2 openbsd-bbd7863e9e2678e3ae2ce69690f0eb6f7dce138b.zip |
Reduce qabs() and qdiv() to aliases of llabs() and lldiv().
Merge the manual pages and call them deprecated there.
ok and manpage tweak jmc@, ok natano@
Diffstat (limited to 'src/lib/libc/stdlib/Makefile.inc')
-rw-r--r-- | src/lib/libc/stdlib/Makefile.inc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libc/stdlib/Makefile.inc b/src/lib/libc/stdlib/Makefile.inc index e04d13b839..3489e44021 100644 --- a/src/lib/libc/stdlib/Makefile.inc +++ b/src/lib/libc/stdlib/Makefile.inc | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile.inc,v 1.60 2016/05/02 12:59:24 millert Exp $ | 1 | # $OpenBSD: Makefile.inc,v 1.61 2016/08/14 23:18:03 guenther Exp $ |
2 | 2 | ||
3 | # stdlib sources | 3 | # stdlib sources |
4 | .PATH: ${LIBCSRCDIR}/arch/${MACHINE_CPU}/stdlib ${LIBCSRCDIR}/stdlib | 4 | .PATH: ${LIBCSRCDIR}/arch/${MACHINE_CPU}/stdlib ${LIBCSRCDIR}/stdlib |
@@ -11,8 +11,8 @@ SRCS+= a64l.c abort.c atexit.c atoi.c atof.c atol.c atoll.c bsearch.c \ | |||
11 | realpath.c remque.c setenv.c strtoimax.c \ | 11 | realpath.c remque.c setenv.c strtoimax.c \ |
12 | strtol.c strtoll.c strtonum.c strtoul.c strtoull.c strtoumax.c \ | 12 | strtol.c strtoll.c strtonum.c strtoul.c strtoull.c strtoumax.c \ |
13 | system.c tfind.c tsearch.c _rand48.c drand48.c erand48.c jrand48.c \ | 13 | system.c tfind.c tsearch.c _rand48.c drand48.c erand48.c jrand48.c \ |
14 | lcong48.c lrand48.c mrand48.c nrand48.c seed48.c srand48.c qabs.c \ | 14 | lcong48.c lrand48.c mrand48.c nrand48.c seed48.c srand48.c \ |
15 | qdiv.c _Exit.c icdb.c | 15 | _Exit.c icdb.c |
16 | 16 | ||
17 | .if (${MACHINE_CPU} == "i386") | 17 | .if (${MACHINE_CPU} == "i386") |
18 | SRCS+= abs.S div.S labs.S ldiv.S | 18 | SRCS+= abs.S div.S labs.S ldiv.S |
@@ -27,5 +27,5 @@ MAN+= a64l.3 abort.3 abs.3 alloca.3 atexit.3 atof.3 atoi.3 atol.3 atoll.3 \ | |||
27 | bsearch.3 div.3 ecvt.3 exit.3 getenv.3 getopt.3 getopt_long.3 \ | 27 | bsearch.3 div.3 ecvt.3 exit.3 getenv.3 getopt.3 getopt_long.3 \ |
28 | getsubopt.3 hcreate.3 imaxabs.3 imaxdiv.3 insque.3 labs.3 ldiv.3 \ | 28 | getsubopt.3 hcreate.3 imaxabs.3 imaxdiv.3 insque.3 labs.3 ldiv.3 \ |
29 | lldiv.3 lsearch.3 malloc.3 posix_memalign.3 posix_openpt.3 ptsname.3 \ | 29 | lldiv.3 lsearch.3 malloc.3 posix_memalign.3 posix_openpt.3 ptsname.3 \ |
30 | qabs.3 qdiv.3 qsort.3 radixsort.3 rand48.3 rand.3 random.3 realpath.3 \ | 30 | qsort.3 radixsort.3 rand48.3 rand.3 random.3 realpath.3 \ |
31 | strtod.3 strtonum.3 strtol.3 strtoul.3 system.3 tsearch.3 | 31 | strtod.3 strtonum.3 strtol.3 strtoul.3 system.3 tsearch.3 |