diff options
author | Roland McGrath <roland@gnu.org> | 2002-11-15 23:50:05 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-11-15 23:50:05 +0000 |
commit | 502328b25830408ad6d8c5d6adf86fe88f3f10d6 (patch) | |
tree | 8dc67ca20cd83053d8c6df3e853e9e6ce41898ea /math | |
parent | 92712dee6828b76b2646d853328cf030eacd36b1 (diff) | |
download | glibc-502328b25830408ad6d8c5d6adf86fe88f3f10d6.tar glibc-502328b25830408ad6d8c5d6adf86fe88f3f10d6.tar.gz glibc-502328b25830408ad6d8c5d6adf86fe88f3f10d6.tar.bz2 glibc-502328b25830408ad6d8c5d6adf86fe88f3f10d6.zip |
* math/Makefile (libm-calls): Remove s_copysign, s_isinf, s_isnan,
s_finite, s_modf, s_scalbn, s_frexp, m_ldexp, s_signbit.
Instead add $(calls:s_%=m_%) to get m_* versions of them all.
Diffstat (limited to 'math')
-rw-r--r-- | math/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/math/Makefile b/math/Makefile index b710c372e0..467a2f7f73 100644 --- a/math/Makefile +++ b/math/Makefile @@ -45,20 +45,20 @@ libm-calls = e_acos e_acosh e_asin e_atan2 e_atanh e_cosh e_exp e_fmod \ e_hypot e_j0 e_j1 e_jn e_lgamma_r e_log e_log10 e_pow \ e_rem_pio2 e_remainder e_scalb e_sinh e_sqrt e_gamma_r \ k_cos k_rem_pio2 k_sin k_tan s_asinh s_atan s_cbrt \ - s_ceil s_copysign s_cos s_erf s_expm1 s_fabs s_finite \ - s_floor s_frexp s_ilogb m_ldexp s_log1p s_logb \ - s_modf s_nextafter s_nexttoward s_rint s_scalbn s_scalbln \ + s_ceil s_cos s_erf s_expm1 s_fabs \ + s_floor s_ilogb s_log1p s_logb \ + s_nextafter s_nexttoward s_rint s_scalbln \ s_significand s_sin s_tan s_tanh w_acos w_acosh w_asin \ w_atan2 w_atanh w_cosh w_drem w_exp w_exp2 w_exp10 w_fmod \ w_tgamma w_hypot w_j0 w_j1 w_jn w_lgamma w_lgamma_r \ w_log w_log10 w_pow w_remainder w_scalb w_sinh w_sqrt \ - s_signbit s_fpclassify s_fmax s_fmin s_fdim s_nan s_trunc \ + s_fpclassify s_fmax s_fmin s_fdim s_nan s_trunc \ s_remquo e_log2 e_exp2 s_round s_nearbyint s_sincos \ conj cimag creal cabs carg s_cexp s_csinh s_ccosh s_clog \ s_catan s_casin s_ccos s_csin s_ctan s_ctanh s_cacos \ s_casinh s_cacosh s_catanh s_csqrt s_cpow s_cproj s_clog10 \ s_fma s_lrint s_llrint s_lround s_llround e_exp10 w_log2 \ - s_isinf s_isnan + $(calls:s_%=m_%) dbl-only-routines := branred doasin dosincos halfulp mpa mpatan2 \ mpatan mpexp mplog mpsqrt mptan sincos32 slowexp \ slowpow |