about summary refs log tree commit diff
path: root/sysdeps/aarch64/fpu/s_fmaxf.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/aarch64/fpu/s_fmaxf.c')
-rw-r--r--sysdeps/aarch64/fpu/s_fmaxf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/aarch64/fpu/s_fmaxf.c b/sysdeps/aarch64/fpu/s_fmaxf.c
index ec4dcdd8c0..56a1a48dbd 100644
--- a/sysdeps/aarch64/fpu/s_fmaxf.c
+++ b/sysdeps/aarch64/fpu/s_fmaxf.c
@@ -17,6 +17,7 @@
    <http://www.gnu.org/licenses/>.  */
 
 #include <math.h>
+#include <libm-alias-float.h>
 
 float
 __fmaxf (float x, float y)
@@ -24,4 +25,4 @@ __fmaxf (float x, float y)
   return __builtin_fmaxf (x, y);
 }
 
-weak_alias (__fmaxf, fmaxf)
+libm_alias_float (__fmax, fmax)