aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/ieee754/ldbl-128/s_erfl.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/ieee754/ldbl-128/s_erfl.c')
-rw-r--r--sysdeps/ieee754/ldbl-128/s_erfl.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sysdeps/ieee754/ldbl-128/s_erfl.c b/sysdeps/ieee754/ldbl-128/s_erfl.c
index efa0e8f..ef8eea6 100644
--- a/sysdeps/ieee754/ldbl-128/s_erfl.c
+++ b/sysdeps/ieee754/ldbl-128/s_erfl.c
@@ -84,7 +84,7 @@
/* Evaluate P[n] x^n + P[n-1] x^(n-1) + ... + P[0] */
static long double
-neval (long double x, long double *p, int n)
+neval (long double x, const long double *p, int n)
{
long double y;
@@ -102,7 +102,7 @@ neval (long double x, long double *p, int n)
/* Evaluate x^n+1 + P[n] x^(n) + P[n-1] x^(n-1) + ... + P[0] */
static long double
-deval (long double x, long double *p, int n)
+deval (long double x, const long double *p, int n)
{
long double y;
@@ -746,7 +746,7 @@ __erfl (x)
#endif
{
long double a, y, z;
- int32_t i, ix, sign, flag;
+ int32_t i, ix, sign;
ieee854_long_double_shape_type u;
u.value = x;
@@ -804,8 +804,8 @@ weak_alias (__erf, erfl)
x;
#endif
{
- long double P, Q, s, y, z, p, r;
- int32_t i, ix, sign, flag;
+ long double y, z, p, r;
+ int32_t i, ix, sign;
ieee854_long_double_shape_type u;
u.value = x;