diff options
Diffstat (limited to 'math/w_atan2f_compat.c')
-rw-r--r-- | math/w_atan2f_compat.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/math/w_atan2f_compat.c b/math/w_atan2f_compat.c index 8d7ad71b70..271a65c683 100644 --- a/math/w_atan2f_compat.c +++ b/math/w_atan2f_compat.c @@ -24,6 +24,7 @@ #include <math.h> #include <math_private.h> #include <math-svid-compat.h> +#include <libm-alias-float.h> #if LIBM_SVID_COMPAT @@ -40,5 +41,5 @@ __atan2f (float y, float x) __set_errno (ERANGE); return z; } -weak_alias (__atan2f, atan2f) +libm_alias_float (__atan2, atan2) #endif |