aboutsummaryrefslogtreecommitdiff
path: root/math/w_jnf_compat.c
diff options
context:
space:
mode:
Diffstat (limited to 'math/w_jnf_compat.c')
-rw-r--r--math/w_jnf_compat.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/math/w_jnf_compat.c b/math/w_jnf_compat.c
index 440d53d..b2b4161 100644
--- a/math/w_jnf_compat.c
+++ b/math/w_jnf_compat.c
@@ -25,7 +25,7 @@
#if LIBM_SVID_COMPAT
/* wrapper jnf */
float
-jnf (int n, float x)
+__jnf (int n, float x)
{
if (__builtin_expect (isgreater (fabsf (x), (float) X_TLOSS), 0)
&& _LIB_VERSION != _IEEE_ && _LIB_VERSION != _POSIX_)
@@ -34,11 +34,12 @@ jnf (int n, float x)
return __ieee754_jnf (n, x);
}
+weak_alias (__jnf, jnf)
/* wrapper ynf */
float
-ynf (int n, float x)
+__ynf (int n, float x)
{
if (__builtin_expect (islessequal (x, 0.0f)
|| isgreater (x, (float) X_TLOSS), 0)
@@ -63,4 +64,5 @@ ynf (int n, float x)
return __ieee754_ynf (n, x);
}
+weak_alias (__ynf, ynf)
#endif