diff options
author | das <das@FreeBSD.org> | 2008-03-02 01:48:17 +0000 |
---|---|---|
committer | das <das@FreeBSD.org> | 2008-03-02 01:48:17 +0000 |
commit | 635be493045e4d2da841ce8f5762e525fbd6807b (patch) | |
tree | d6912bdb1f86e4d1cc3488f71c6d19e78c4cd913 /lib/msun/Makefile | |
parent | 09521f824a63fb4b052b6051255d1733d714428a (diff) | |
download | FreeBSD-src-635be493045e4d2da841ce8f5762e525fbd6807b.zip FreeBSD-src-635be493045e4d2da841ce8f5762e525fbd6807b.tar.gz |
Hook up sqrtl() to the build.
Diffstat (limited to 'lib/msun/Makefile')
-rw-r--r-- | lib/msun/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/msun/Makefile b/lib/msun/Makefile index c870352..2f86fb3 100644 --- a/lib/msun/Makefile +++ b/lib/msun/Makefile @@ -79,7 +79,7 @@ SYMBOL_MAPS= ${SYM_MAPS} COMMON_SRCS+= s_copysignl.c s_fabsl.c s_llrintl.c s_lrintl.c s_modfl.c .if ${LDBL_PREC} != 53 # If long double != double use these; otherwise, we alias the double versions. -COMMON_SRCS+= k_cosl.c k_sinl.c k_tanl.c s_ceill.c s_cosl.c \ +COMMON_SRCS+= e_sqrtl.c k_cosl.c k_sinl.c k_tanl.c s_ceill.c s_cosl.c \ s_exp2l.c s_floorl.c s_fmal.c \ s_frexpl.c s_logbl.c s_nanl.c s_nextafterl.c s_nexttoward.c \ s_rintl.c s_scalbnl.c s_sinl.c s_tanl.c s_truncl.c @@ -171,7 +171,7 @@ MLINKS+=scalbn.3 scalbln.3 scalbn.3 scalblnf.3 scalbn.3 scalblnl.3 MLINKS+=scalbn.3 scalbnf.3 scalbn.3 scalbnl.3 MLINKS+=sin.3 sinf.3 sin.3 sinl.3 MLINKS+=sinh.3 sinhf.3 -MLINKS+=sqrt.3 cbrt.3 sqrt.3 cbrtf.3 sqrt.3 sqrtf.3 +MLINKS+=sqrt.3 cbrt.3 sqrt.3 cbrtf.3 sqrt.3 sqrtf.3 sqrt.3 sqrtl.3 MLINKS+=tan.3 tanf.3 tan.3 tanl.3 MLINKS+=tanh.3 tanhf.3 MLINKS+=trunc.3 truncf.3 trunc.3 truncl.3 |