diff options
Diffstat (limited to 'sysdeps/ieee754/ldbl-128/s_tanhl.c')
-rw-r--r-- | sysdeps/ieee754/ldbl-128/s_tanhl.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sysdeps/ieee754/ldbl-128/s_tanhl.c b/sysdeps/ieee754/ldbl-128/s_tanhl.c index f7a1d20f79..ad418c08e8 100644 --- a/sysdeps/ieee754/ldbl-128/s_tanhl.c +++ b/sysdeps/ieee754/ldbl-128/s_tanhl.c @@ -45,12 +45,12 @@ #include <math.h> #include <math_private.h> -static const long double one = 1.0, two = 2.0, tiny = 1.0e-4900L; +static const _Float128 one = 1.0, two = 2.0, tiny = 1.0e-4900L; -long double -__tanhl (long double x) +_Float128 +__tanhl (_Float128 x) { - long double t, z; + _Float128 t, z; u_int32_t jx, ix; ieee854_long_double_shape_type u; |