aboutsummaryrefslogtreecommitdiff
path: root/sysdeps
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2001-04-04 20:17:21 +0000
committerAndreas Jaeger <aj@suse.de>2001-04-04 20:17:21 +0000
commitf18ec00f67c0135c76b668c87e84ccc448a4d978 (patch)
tree806211a02e4403c8c25c495cb4842931ef1a62b4 /sysdeps
parent90dd37a6280e2c3c6d2b283524c2c69bfc531428 (diff)
downloadglibc-f18ec00f67c0135c76b668c87e84ccc448a4d978.tar
glibc-f18ec00f67c0135c76b668c87e84ccc448a4d978.tar.gz
glibc-f18ec00f67c0135c76b668c87e84ccc448a4d978.tar.bz2
glibc-f18ec00f67c0135c76b668c87e84ccc448a4d978.zip
Update.
2001-04-01 Andreas Jaeger <aj@suse.de> * sysdeps/generic/s_nextafter.c (NO_LONG_DOUBLE): Add nexttowardl alias. * sysdeps/generic/s_fma.c (NO_LONG_DOUBLE): Add fmal alias.
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/generic/s_fma.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/sysdeps/generic/s_fma.c b/sysdeps/generic/s_fma.c
index 53974dc40c..ccf69c9a8a 100644
--- a/sysdeps/generic/s_fma.c
+++ b/sysdeps/generic/s_fma.c
@@ -1,5 +1,5 @@
/* Compute x * y + z as ternary operation.
- Copyright (C) 1997 Free Software Foundation, Inc.
+ Copyright (C) 1997, 2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
@@ -26,3 +26,8 @@ __fma (double x, double y, double z)
return (x * y) + z;
}
weak_alias (__fma, fma)
+
+#ifdef NO_LONG_DOUBLE
+strong_alias (__fma, __fmal)
+weak_alias (__fmal, fmal)
+#endif