summaryrefslogtreecommitdiff
path: root/mpfr/sinh.c
diff options
context:
space:
mode:
Diffstat (limited to 'mpfr/sinh.c')
-rw-r--r--mpfr/sinh.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mpfr/sinh.c b/mpfr/sinh.c
index dceaf14c7..7be49ebba 100644
--- a/mpfr/sinh.c
+++ b/mpfr/sinh.c
@@ -86,7 +86,7 @@ mpfr_sinh (mpfr_ptr y, mpfr_srcptr xt, mp_rnd_t rnd_mode)
/* compute the precision of intermediary variable */
Nt = MAX(Nx, Ny);
/* the optimal number of bits : see algorithms.ps */
- Nt = Nt + _mpfr_ceil_log2 (5) + _mpfr_ceil_log2 (Nt);
+ Nt = Nt + __gmpfr_ceil_log2 (5) + __gmpfr_ceil_log2 (Nt);
/* initialise of intermediary variable */
mpfr_init (t);
@@ -119,7 +119,7 @@ mpfr_sinh (mpfr_ptr y, mpfr_srcptr xt, mp_rnd_t rnd_mode)
d = MPFR_EXP(te) - MPFR_EXP(t) + 2;
/* estimation of the error */
- /* err = Nt-(_mpfr_ceil_log2(1+pow(2,d)));*/
+ /* err = Nt-(__gmpfr_ceil_log2(1+pow(2,d)));*/
err = Nt - (MAX(d,0) + 1);
}