summaryrefslogtreecommitdiff
path: root/sysdeps/x86_64/fpu/s_fabsf.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/x86_64/fpu/s_fabsf.c')
-rw-r--r--sysdeps/x86_64/fpu/s_fabsf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/x86_64/fpu/s_fabsf.c b/sysdeps/x86_64/fpu/s_fabsf.c
index 9956cce757..2a47baa9b0 100644
--- a/sysdeps/x86_64/fpu/s_fabsf.c
+++ b/sysdeps/x86_64/fpu/s_fabsf.c
@@ -17,10 +17,11 @@
<http://www.gnu.org/licenses/>. */
#include <math.h>
+#include <libm-alias-float.h>
float
__fabsf (float x)
{
return __builtin_fabsf (x);
}
-weak_alias (__fabsf, fabsf)
+libm_alias_float (__fabs, fabs)