]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - math/s_fmaf.c
Use libm_alias_float in math/.
[thirdparty/glibc.git] / math / s_fmaf.c
index 06f1380b8702d5f07478c3a38fe1a45e810f3276..310eb2be3e491719df9b16f041d512f5b315e262 100644 (file)
@@ -18,6 +18,7 @@
    <http://www.gnu.org/licenses/>.  */
 
 #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