From f18ec00f67c0135c76b668c87e84ccc448a4d978 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Wed, 4 Apr 2001 20:17:21 +0000 Subject: Update. 2001-04-01 Andreas Jaeger * sysdeps/generic/s_nextafter.c (NO_LONG_DOUBLE): Add nexttowardl alias. * sysdeps/generic/s_fma.c (NO_LONG_DOUBLE): Add fmal alias. --- sysdeps/generic/s_fma.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'sysdeps/generic') 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 , 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 -- cgit v1.2.3