diff options
Diffstat (limited to 'sysdeps/libm-ieee754/s_scalbnl.c')
-rw-r--r-- | sysdeps/libm-ieee754/s_scalbnl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/libm-ieee754/s_scalbnl.c b/sysdeps/libm-ieee754/s_scalbnl.c index 3e80d85136..4e1d08ef90 100644 --- a/sysdeps/libm-ieee754/s_scalbnl.c +++ b/sysdeps/libm-ieee754/s_scalbnl.c @@ -39,10 +39,10 @@ huge = 1.0e+4900L, tiny = 1.0e-4900L; #ifdef __STDC__ - long double __scalbnl (long double x, long int n) + long double __scalbnl (long double x, int n) #else long double __scalbnl (x,n) - long double x; long int n; + long double x; int n; #endif { int32_t k,es,hx,lx; |