diff options
Diffstat (limited to 'math/w_sqrt_compat.c')
-rw-r--r-- | math/w_sqrt_compat.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/math/w_sqrt_compat.c b/math/w_sqrt_compat.c index 743df321d5..aeead2e49c 100644 --- a/math/w_sqrt_compat.c +++ b/math/w_sqrt_compat.c @@ -21,6 +21,7 @@ #include <math-svid-compat.h> +#if LIBM_SVID_COMPAT /* wrapper sqrt */ double __sqrt (double x) @@ -31,7 +32,8 @@ __sqrt (double x) return __ieee754_sqrt (x); } weak_alias (__sqrt, sqrt) -#ifdef NO_LONG_DOUBLE +# ifdef NO_LONG_DOUBLE strong_alias (__sqrt, __sqrtl) weak_alias (__sqrt, sqrtl) +# endif #endif |