about summary refs log tree commit diff
path: root/math/feholdexcpt.c
diff options
context:
space:
mode:
Diffstat (limited to 'math/feholdexcpt.c')
-rw-r--r--math/feholdexcpt.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/math/feholdexcpt.c b/math/feholdexcpt.c
index c107daf222..53cb13cb49 100644
--- a/math/feholdexcpt.c
+++ b/math/feholdexcpt.c
@@ -20,10 +20,12 @@
 #include <fenv.h>
 
 int
-feholdexcept (fenv_t *envp)
+__feholdexcept (fenv_t *envp)
 {
   /* No exception traps to disable and no state to save.  */
   return 0;
 }
-libm_hidden_def (feholdexcept)
+libm_hidden_def (__feholdexcept)
+weak_alias (__feholdexcept, feholdexcept)
+libm_hidden_weak (feholdexcept)
 stub_warning (feholdexcept)