diff options
author | Siddhesh Poyarekar <siddhesh@redhat.com> | 2014-06-25 08:47:13 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@redhat.com> | 2014-06-25 08:47:13 +0530 |
commit | 911422da02cfb683f9d97c46e7a4049449ec1a23 (patch) | |
tree | caefccb492117744529606303b47f8df52b328f1 /sysdeps/i386/fpu/s_scalbnf.S | |
parent | 0d749bbebad48b4c673a29af03d5c5dd151881de (diff) | |
download | glibc-911422da02cfb683f9d97c46e7a4049449ec1a23.tar.gz glibc-911422da02cfb683f9d97c46e7a4049449ec1a23.tar.xz glibc-911422da02cfb683f9d97c46e7a4049449ec1a23.zip |
Add compat symbols for scalb* in i386
Bring back symbols into libc.so for scalb* functions. They are no longer used but unfortunately they're now part of the ABI.
Diffstat (limited to 'sysdeps/i386/fpu/s_scalbnf.S')
-rw-r--r-- | sysdeps/i386/fpu/s_scalbnf.S | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sysdeps/i386/fpu/s_scalbnf.S b/sysdeps/i386/fpu/s_scalbnf.S index fe6516ee74..0de0694c70 100644 --- a/sysdeps/i386/fpu/s_scalbnf.S +++ b/sysdeps/i386/fpu/s_scalbnf.S @@ -16,3 +16,8 @@ ENTRY(__scalbnf) END (__scalbnf) weak_alias (__scalbnf, scalbnf) strong_alias (__scalbnf, __scalblnf) + +#include <shlib-compat.h> +#if SHLIB_COMPAT (libc, GLIBC_2_1, GLIBC_2_20) +compat_symbol (libc, __scalbnf, scalblnf, GLIBC_2_1); +#endif |