summaryrefslogtreecommitdiff
path: root/sysdeps/arm/feupdateenv.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/arm/feupdateenv.c')
-rw-r--r--sysdeps/arm/feupdateenv.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/sysdeps/arm/feupdateenv.c b/sysdeps/arm/feupdateenv.c
index cc2989545c..f7478e1bc7 100644
--- a/sysdeps/arm/feupdateenv.c
+++ b/sysdeps/arm/feupdateenv.c
@@ -23,7 +23,7 @@
int
-feupdateenv (const fenv_t *envp)
+__feupdateenv (const fenv_t *envp)
{
fpu_control_t fpscr, new_fpscr, updated_fpscr;
int excepts;
@@ -73,4 +73,6 @@ feupdateenv (const fenv_t *envp)
return 0;
}
-libm_hidden_def (feupdateenv)
+libm_hidden_def (__feupdateenv)
+weak_alias (__feupdateenv, feupdateenv)
+libm_hidden_weak (feupdateenv)