diff options
Diffstat (limited to 'math/w_hypotf_compat.c')
-rw-r--r-- | math/w_hypotf_compat.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/math/w_hypotf_compat.c b/math/w_hypotf_compat.c index 8e6d2343eb..82870ce551 100644 --- a/math/w_hypotf_compat.c +++ b/math/w_hypotf_compat.c @@ -20,6 +20,7 @@ #include <math.h> #include <math_private.h> #include <math-svid-compat.h> +#include <libm-alias-float.h> #if LIBM_SVID_COMPAT @@ -34,5 +35,5 @@ __hypotf(float x, float y) return z; } -weak_alias (__hypotf, hypotf) +libm_alias_float (__hypot, hypot) #endif |