]> sourceware.org Git - glibc.git/commitdiff
Update.
authorAndreas Jaeger <aj@suse.de>
Wed, 4 Apr 2001 20:17:21 +0000 (20:17 +0000)
committerAndreas Jaeger <aj@suse.de>
Wed, 4 Apr 2001 20:17:21 +0000 (20:17 +0000)
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.

ChangeLog
sysdeps/generic/s_fma.c

index f2095f772ec6fecff8b46e2b71d1314fcfaca021..61d9d7294bae3aad27a32e702e56d37e2a0a3960 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+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.
+
 2001-04-04  Ulrich Drepper  <drepper@redhat.com>
 
        * sysdeps/unix/sysv/linux/s390/s390-64/Dist: Add ucontext_i.h.
index 53974dc40c335a54dfa956fd25490f2985c0ee12..ccf69c9a8afe41e2e8f8b17b9215bb452451b1ad 100644 (file)
@@ -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
This page took 0.052797 seconds and 5 git commands to generate.