diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-06-29 20:58:06 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-06-29 20:58:06 +0000 |
commit | 1a6d7967ad18d850c034d84ae89cc91dfcfb523a (patch) | |
tree | c71ecd00d6b53e602a3cdb75c291569e9c99a53d /sysdeps/sparc/fpu/fraiseexcpt.c | |
parent | a0e5d73a78dde538353c5bfa8d92d619d3800586 (diff) | |
download | glibc-1a6d7967ad18d850c034d84ae89cc91dfcfb523a.tar.gz glibc-1a6d7967ad18d850c034d84ae89cc91dfcfb523a.tar.xz glibc-1a6d7967ad18d850c034d84ae89cc91dfcfb523a.zip |
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/fraiseexcpt.c')
-rw-r--r-- | sysdeps/sparc/fpu/fraiseexcpt.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sysdeps/sparc/fpu/fraiseexcpt.c b/sysdeps/sparc/fpu/fraiseexcpt.c index 485cfdf888..b6c5d80541 100644 --- a/sysdeps/sparc/fpu/fraiseexcpt.c +++ b/sysdeps/sparc/fpu/fraiseexcpt.c @@ -19,6 +19,7 @@ #include <fenv.h> #include <math.h> +#include <shlib-compat.h> int __feraiseexcept (int excepts) @@ -59,6 +60,10 @@ __feraiseexcept (int excepts) /* Success. */ return 0; } + +#if SHLIB_COMPAT (libm, GLIBC_2_1, GLIBC_2_2) strong_alias (__feraiseexcept, __old_feraiseexcept) -symbol_version (__old_feraiseexcept, feraiseexcept, GLIBC_2.1); -default_symbol_version (__feraiseexcept, feraiseexcept, GLIBC_2.2); +compat_symbol (libm, __old_feraiseexcept, feraiseexcept, GLIBC_2_1); +#endif + +versioned_symbol (libm, __feraiseexcept, feraiseexcept, GLIBC_2_2); |