diff options
author | Andreas Schwab <schwab@redhat.com> | 2011-10-14 11:21:05 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@redhat.com> | 2011-10-14 11:21:23 +0200 |
commit | 6b1f68c91f6e2a10280b3af00969c65d2343d873 (patch) | |
tree | d7849a429c0613cf660355e37ae2f4928df01e3f /sysdeps | |
parent | f2282d42b49dcae001c269aeed4d9dbf74c5ca63 (diff) | |
download | glibc-6b1f68c91f6e2a10280b3af00969c65d2343d873.zip glibc-6b1f68c91f6e2a10280b3af00969c65d2343d873.tar.gz glibc-6b1f68c91f6e2a10280b3af00969c65d2343d873.tar.bz2 |
Fix lost feraiseexcept symbol
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/x86_64/fpu/fraiseexcpt.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/x86_64/fpu/fraiseexcpt.c b/sysdeps/x86_64/fpu/fraiseexcpt.c index d0f1422..88d1a59 100644 --- a/sysdeps/x86_64/fpu/fraiseexcpt.c +++ b/sysdeps/x86_64/fpu/fraiseexcpt.c @@ -117,4 +117,5 @@ __feraiseexcept (int excepts) /* Success. */ return 0; } -libm_hidden_ver (__feraiseexcept, feraiseexcept) +strong_alias (__feraiseexcept, feraiseexcept) +libm_hidden_def (feraiseexcept) |