mirror of
git://sourceware.org/git/glibc.git
synced 2025-02-17 13:00:43 +08:00
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.
This commit is contained in:
parent
90dd37a628
commit
f18ec00f67
@ -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.
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user