summaryrefslogtreecommitdiff
path: root/sysdeps/sparc/fpu/fclrexcpt.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-06-29 20:58:06 +0000
committerUlrich Drepper <drepper@redhat.com>2000-06-29 20:58:06 +0000
commit1a6d7967ad18d850c034d84ae89cc91dfcfb523a (patch)
treec71ecd00d6b53e602a3cdb75c291569e9c99a53d /sysdeps/sparc/fpu/fclrexcpt.c
parenta0e5d73a78dde538353c5bfa8d92d619d3800586 (diff)
downloadglibc-1a6d7967ad18d850c034d84ae89cc91dfcfb523a.tar.gz
Make sparc64 GLIBC_2.2+ only.
2000-06-29 Jakub Jelinek <jakub@redhat.com> * shlib-versions: Make sparc64 GLIBC_2.2+ only.
Diffstat (limited to 'sysdeps/sparc/fpu/fclrexcpt.c')
-rw-r--r--sysdeps/sparc/fpu/fclrexcpt.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/sysdeps/sparc/fpu/fclrexcpt.c b/sysdeps/sparc/fpu/fclrexcpt.c
index 647387e5ec..9b10f1b6e9 100644
--- a/sysdeps/sparc/fpu/fclrexcpt.c
+++ b/sysdeps/sparc/fpu/fclrexcpt.c
@@ -18,6 +18,7 @@
Boston, MA 02111-1307, USA. */
#include <fenv.h>
+#include <shlib-compat.h>
int
__feclearexcept (int excepts)
@@ -33,6 +34,10 @@ __feclearexcept (int excepts)
/* Success. */
return 0;
}
+
+#if SHLIB_COMPAT (libm, GLIBC_2_1, GLIBC_2_2)
strong_alias (__feclearexcept, __old_feclearexcept)
-symbol_version (__old_feclearexcept, feclearexcept, GLIBC_2.1);
-default_symbol_version (__feclearexcept, feclearexcept, GLIBC_2.2);
+compat_symbol (libm, __old_feclearexcept, feclearexcept, GLIBC_2_1);
+#endif
+
+versioned_symbol (libm, __feclearexcept, feclearexcept, GLIBC_2_2);