]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - math/s_fmaf.c
ia64: Regenerate ulps
[thirdparty/glibc.git] / math / s_fmaf.c
index 06f1380b8702d5f07478c3a38fe1a45e810f3276..c4bf3a2485182903fce2b6300f245036f0e36155 100644 (file)
@@ -1,7 +1,6 @@
 /* Compute x * y + z as ternary operation.
-   Copyright (C) 1997-2017 Free Software Foundation, Inc.
+   Copyright (C) 1997-2023 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
-   Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
 
    The GNU C Library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Lesser General Public
 
    You should have received a copy of the GNU Lesser General Public
    License along with the GNU C Library; if not, see
-   <http://www.gnu.org/licenses/>.  */
+   <https://www.gnu.org/licenses/>.  */
 
+#define NO_MATH_REDIRECT
 #include <math.h>
+#include <libm-alias-float.h>
 
 float
 __fmaf (float x, float y, float z)
@@ -25,5 +26,5 @@ __fmaf (float x, float y, float z)
   return (x * y) + z;
 }
 #ifndef __fmaf
-weak_alias (__fmaf, fmaf)
+libm_alias_float (__fma, fma)
 #endif