diff options
Diffstat (limited to 'sysdeps/ia64/fpu/s_matherrl.c')
-rw-r--r-- | sysdeps/ia64/fpu/s_matherrl.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sysdeps/ia64/fpu/s_matherrl.c b/sysdeps/ia64/fpu/s_matherrl.c index 6fe92d7739..dc64b31e50 100644 --- a/sysdeps/ia64/fpu/s_matherrl.c +++ b/sysdeps/ia64/fpu/s_matherrl.c @@ -13,8 +13,10 @@ #include <math.h> #include <math_private.h> +#include <math-svid-compat.h> #include "libm_support.h" +#if LIBM_SVID_COMPAT int weak_function __matherrl(struct exceptionl *x) @@ -23,4 +25,5 @@ __matherrl(struct exceptionl *x) if(x->arg1!=x->arg1) return 0; return n; } -weak_alias (__matherrl, matherrl) +compat_symbol (libm, __matherrl, matherrl, GLIBC_2_2_3); +#endif |