diff options
Diffstat (limited to 'math/w_hypot_compat.c')
-rw-r--r-- | math/w_hypot_compat.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/math/w_hypot_compat.c b/math/w_hypot_compat.c index ff3774cf62..21c7e65c5e 100644 --- a/math/w_hypot_compat.c +++ b/math/w_hypot_compat.c @@ -19,6 +19,7 @@ #include <math-svid-compat.h> +#if LIBM_SVID_COMPAT double __hypot (double x, double y) { @@ -30,7 +31,8 @@ __hypot (double x, double y) return z; } weak_alias (__hypot, hypot) -#ifdef NO_LONG_DOUBLE +# ifdef NO_LONG_DOUBLE strong_alias (__hypot, __hypotl) weak_alias (__hypot, hypotl) +# endif #endif |