summary refs log tree commit diff
path: root/math/w_sqrt_compat.c
diff options
context:
space:
mode:
Diffstat (limited to 'math/w_sqrt_compat.c')
-rw-r--r--math/w_sqrt_compat.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/math/w_sqrt_compat.c b/math/w_sqrt_compat.c
index aeead2e49c..3280d2fbb8 100644
--- a/math/w_sqrt_compat.c
+++ b/math/w_sqrt_compat.c
@@ -19,6 +19,7 @@
 #include <math.h>
 #include <math_private.h>
 #include <math-svid-compat.h>
+#include <libm-alias-double.h>
 
 
 #if LIBM_SVID_COMPAT
@@ -31,9 +32,5 @@ __sqrt (double x)
 
   return __ieee754_sqrt (x);
 }
-weak_alias (__sqrt, sqrt)
-# ifdef NO_LONG_DOUBLE
-strong_alias (__sqrt, __sqrtl)
-weak_alias (__sqrt, sqrtl)
-# endif
+libm_alias_double (__sqrt, sqrt)
 #endif