aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/arm
diff options
context:
space:
mode:
authorSteve Ellcey <sellcey@mips.com>2015-01-05 15:07:26 -0800
committerSteve Ellcey <sellcey@mips.com>2015-01-05 15:07:26 -0800
commit61695fb2bab724ed69057c3eff03253708f96517 (patch)
tree4769cda57d5fc1e3ad14c4d95cbb4f361acfac91 /sysdeps/arm
parent295a453e2179b8e4e2b578e0176e76b9b574d7fc (diff)
parentef9faf138578dc7e559a9fd58080825962ce0339 (diff)
downloadglibc-61695fb2bab724ed69057c3eff03253708f96517.tar
glibc-61695fb2bab724ed69057c3eff03253708f96517.tar.gz
glibc-61695fb2bab724ed69057c3eff03253708f96517.tar.bz2
glibc-61695fb2bab724ed69057c3eff03253708f96517.zip
Merge branch 'master' of ssh://sourceware.org/git/glibc
Diffstat (limited to 'sysdeps/arm')
-rw-r--r--sysdeps/arm/feholdexcpt.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/sysdeps/arm/feholdexcpt.c b/sysdeps/arm/feholdexcpt.c
index ed7fc5f60c..9d4a72425c 100644
--- a/sysdeps/arm/feholdexcpt.c
+++ b/sysdeps/arm/feholdexcpt.c
@@ -21,7 +21,7 @@
int
-feholdexcept (fenv_t *envp)
+__feholdexcept (fenv_t *envp)
{
/* Fail if a VFP unit isn't present. */
if (!ARM_HAVE_VFP)
@@ -30,4 +30,6 @@ feholdexcept (fenv_t *envp)
libc_feholdexcept_vfp (envp);
return 0;
}
-libm_hidden_def (feholdexcept)
+libm_hidden_def (__feholdexcept)
+weak_alias (__feholdexcept, feholdexcept)
+libm_hidden_weak (feholdexcept)