diff options
Diffstat (limited to 'sysdeps/ieee754/ldbl-128/e_gammal_r.c')
-rw-r--r-- | sysdeps/ieee754/ldbl-128/e_gammal_r.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/ieee754/ldbl-128/e_gammal_r.c b/sysdeps/ieee754/ldbl-128/e_gammal_r.c index 9fd0dc046d..f620463ef9 100644 --- a/sysdeps/ieee754/ldbl-128/e_gammal_r.c +++ b/sysdeps/ieee754/ldbl-128/e_gammal_r.c @@ -69,7 +69,7 @@ gammal_positive (_Float128 x, int *exp2_adj) { /* Adjust into the range for using exp (lgamma). */ *exp2_adj = 0; - _Float128 n = __ceill (x - L(1.5)); + _Float128 n = ceill (x - L(1.5)); _Float128 x_adj = x - n; _Float128 eps; _Float128 prod = __gamma_productl (x_adj, 0, n, &eps); @@ -86,7 +86,7 @@ gammal_positive (_Float128 x, int *exp2_adj) { /* Adjust into the range for applying Stirling's approximation. */ - _Float128 n = __ceill (24 - x); + _Float128 n = ceill (24 - x); x_adj = x + n; x_eps = (x - (x_adj - n)); prod = __gamma_productl (x_adj - n, x_eps, n, &eps); |