diff options
Diffstat (limited to 'sysdeps/sh')
-rw-r--r-- | sysdeps/sh/sh4/fpu/fesetround.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sysdeps/sh/sh4/fpu/fesetround.c b/sysdeps/sh/sh4/fpu/fesetround.c index 2f7e5f73c0..0f8213e392 100644 --- a/sysdeps/sh/sh4/fpu/fesetround.c +++ b/sysdeps/sh/sh4/fpu/fesetround.c @@ -21,7 +21,7 @@ #include <fpu_control.h> int -fesetround (int round) +__fesetround (int round) { fpu_control_t cw; @@ -40,4 +40,6 @@ fesetround (int round) return 0; } -libm_hidden_def (fesetround) +libm_hidden_def (__fesetround) +weak_alias (__fesetround, fesetround) +libm_hidden_weak (fesetround) |