diff options
| author | drochner <drochner@NetBSD.org> | 2006-03-21 18:46:05 +0000 |
|---|---|---|
| committer | drochner <drochner@NetBSD.org> | 2006-03-21 18:46:05 +0000 |
| commit | 4ece2172cf5ad224bab0049fc73b5b59f1709fca (patch) | |
| tree | fb73eed2b7c627142baffce9e204a458ade190aa /lib/libm | |
| parent | d9956871be3494166d2d198e9726986e5d16cb6b (diff) | |
Build the sun versions of frexp(), ldexp() and modf().
While the versions in libc/gen are prettier to look at, having single
precision versions in libm and double precision versions in libc causes
a lot of confusion, and to favor libm gets us coprocessor support.
Diffstat (limited to 'lib/libm')
| -rw-r--r-- | lib/libm/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libm/Makefile b/lib/libm/Makefile index 61a7975c300..a5e0595ac1e 100644 --- a/lib/libm/Makefile +++ b/lib/libm/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.72 2006/03/15 22:07:09 kleink Exp $ +# $NetBSD: Makefile,v 1.73 2006/03/21 18:46:05 drochner Exp $ # # @(#)Makefile 5.1beta 93/09/24 # @@ -137,7 +137,7 @@ COMMON_SRCS = e_acos.c e_acosf.c e_acosh.c e_acoshf.c e_asin.c e_asinf.c \ w_pow.c w_powf.c w_remainder.c w_remainderf.c w_scalb.c w_scalbf.c \ w_sinh.c w_sinhf.c w_sqrt.c w_sqrtf.c \ lrint.c lrintf.c llrint.c llrintf.c lround.c lroundf.c llround.c \ - llroundf.c + llroundf.c s_frexp.c s_ldexp.c s_modf.c # math routines for non-IEEE architectures. NOIEEE_SRCS = n_asincos.c n_acosh.c n_asinh.c n_atan.c n_atanh.c n_cosh.c \ |
