summary refs log tree commit diff
path: root/math/w_atan2l_compat.c
diff options
context:
space:
mode:
Diffstat (limited to 'math/w_atan2l_compat.c')
-rw-r--r--math/w_atan2l_compat.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/math/w_atan2l_compat.c b/math/w_atan2l_compat.c
index 9dc2b144ea..e7e9581b83 100644
--- a/math/w_atan2l_compat.c
+++ b/math/w_atan2l_compat.c
@@ -24,6 +24,7 @@
 #include <math.h>
 #include <math_private.h>
 #include <math-svid-compat.h>
+#include <libm-alias-ldouble.h>
 
 
 #if LIBM_SVID_COMPAT
@@ -40,5 +41,5 @@ __atan2l (long double y, long double x)
     __set_errno (ERANGE);
   return z;
 }
-weak_alias (__atan2l, atan2l)
+libm_alias_ldouble (__atan2, atan2)
 #endif