about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@redhat.com>2011-10-14 11:21:05 +0200
committerAndreas Schwab <schwab@redhat.com>2011-10-14 11:21:23 +0200
commit6b1f68c91f6e2a10280b3af00969c65d2343d873 (patch)
treed7849a429c0613cf660355e37ae2f4928df01e3f
parentf2282d42b49dcae001c269aeed4d9dbf74c5ca63 (diff)
downloadglibc-6b1f68c91f6e2a10280b3af00969c65d2343d873.tar.gz
glibc-6b1f68c91f6e2a10280b3af00969c65d2343d873.tar.xz
glibc-6b1f68c91f6e2a10280b3af00969c65d2343d873.zip
Fix lost feraiseexcept symbol
-rw-r--r--ChangeLog4
-rw-r--r--sysdeps/x86_64/fpu/fraiseexcpt.c3
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 89611bd821..5e5b566b12 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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)