diff options
Diffstat (limited to 'math/w_tgamma_compat.c')
-rw-r--r-- | math/w_tgamma_compat.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/math/w_tgamma_compat.c b/math/w_tgamma_compat.c index 93bd48fd3f..f843475f10 100644 --- a/math/w_tgamma_compat.c +++ b/math/w_tgamma_compat.c @@ -20,6 +20,7 @@ #include <math_private.h> #include <math-svid-compat.h> +#if LIBM_SVID_COMPAT double __tgamma(double x) { @@ -41,7 +42,8 @@ __tgamma(double x) return local_signgam < 0 ? -y : y; } weak_alias (__tgamma, tgamma) -#ifdef NO_LONG_DOUBLE +# ifdef NO_LONG_DOUBLE strong_alias (__tgamma, __tgammal) weak_alias (__tgamma, tgammal) +# endif #endif |