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 | |
parent | f2282d42b49dcae001c269aeed4d9dbf74c5ca63 (diff) | |
download | glibc-6b1f68c91f6e2a10280b3af00969c65d2343d873.tar glibc-6b1f68c91f6e2a10280b3af00969c65d2343d873.tar.gz glibc-6b1f68c91f6e2a10280b3af00969c65d2343d873.tar.bz2 glibc-6b1f68c91f6e2a10280b3af00969c65d2343d873.zip |
Fix lost feraiseexcept symbol
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | sysdeps/x86_64/fpu/fraiseexcpt.c | 3 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2011-10-14 Andreas Schwab <schwab@redhat.com> + + * sysdeps/x86_64/fpu/fraiseexcpt.c: Fix last change. + 2011-10-13 Roland McGrath <roland@hack.frob.com> [BZ #13291] diff --git a/sysdeps/x86_64/fpu/fraiseexcpt.c b/sysdeps/x86_64/fpu/fraiseexcpt.c index d0f1422e30..88d1a59bbb 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) |