about summary refs log tree commit diff
path: root/sysdeps/ieee754/ldbl-128/s_nextafterl.c
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2024-05-20 05:25:34 -0700
committerH.J. Lu <hjl.tools@gmail.com>2024-05-22 06:12:17 -0700
commit43d41ae6d74441dd5d21045324ff7391e7b0f545 (patch)
treeee1e4fdd45aa7bfc9cd5bfad5dce82253b206f2d /sysdeps/ieee754/ldbl-128/s_nextafterl.c
parenta34f76edbda8a0b143111e670ca33c97623bfe56 (diff)
downloadglibc-43d41ae6d74441dd5d21045324ff7391e7b0f545.tar.gz
glibc-43d41ae6d74441dd5d21045324ff7391e7b0f545.tar.xz
glibc-43d41ae6d74441dd5d21045324ff7391e7b0f545.zip
Don't provide XXXf128_do_not_use aliases [BZ #31757]
Don't provide __nexttowardf128_do_not_use, nexttowardf128_do_not_use,
finitef128_do_not_use, isinff128_do_not_use and isnanf128_do_not_use.
This fixes BZ #31757.

Signed-off-by: H.J. Lu <hjl.tools@gmail.com>
Reviewed-by: Adhemerval Zanella  <adhemerval.zanella@linaro.org>
Diffstat (limited to 'sysdeps/ieee754/ldbl-128/s_nextafterl.c')
-rw-r--r--sysdeps/ieee754/ldbl-128/s_nextafterl.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/sysdeps/ieee754/ldbl-128/s_nextafterl.c b/sysdeps/ieee754/ldbl-128/s_nextafterl.c
index 90e71e3907..f3f3b138dd 100644
--- a/sysdeps/ieee754/ldbl-128/s_nextafterl.c
+++ b/sysdeps/ieee754/ldbl-128/s_nextafterl.c
@@ -83,5 +83,9 @@ _Float128 __nextafterl(_Float128 x, _Float128 y)
 	return x;
 }
 libm_alias_ldouble (__nextafter, nextafter)
+#ifndef __nexttowardl
 strong_alias (__nextafterl, __nexttowardl)
+#endif
+#ifndef nexttowardl
 weak_alias (__nextafterl, nexttowardl)
+#endif