diff options
Diffstat (limited to 'sysdeps/libm-ieee754')
-rw-r--r-- | sysdeps/libm-ieee754/s_scalbnf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/libm-ieee754/s_scalbnf.c b/sysdeps/libm-ieee754/s_scalbnf.c index 60aedf1b88..3a83e54c56 100644 --- a/sysdeps/libm-ieee754/s_scalbnf.c +++ b/sysdeps/libm-ieee754/s_scalbnf.c @@ -31,9 +31,9 @@ huge = 1.0e+30, tiny = 1.0e-30; #ifdef __STDC__ - float scalbnf (float x, int n) + float __scalbnf (float x, int n) #else - float scalbn (x,n) + float __scalbnf (x,n) float x; int n; #endif { |