diff options
Diffstat (limited to 'sysdeps/ieee754/dbl-64/s_tan.c')
-rw-r--r-- | sysdeps/ieee754/dbl-64/s_tan.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/sysdeps/ieee754/dbl-64/s_tan.c b/sysdeps/ieee754/dbl-64/s_tan.c index feec826237..24f6a9f1e6 100644 --- a/sysdeps/ieee754/dbl-64/s_tan.c +++ b/sysdeps/ieee754/dbl-64/s_tan.c @@ -41,6 +41,7 @@ #include "MathLib.h" #include <math.h> #include <math_private.h> +#include <libm-alias-double.h> #include <fenv.h> #include <stap-probe.h> @@ -844,9 +845,5 @@ tanMp (double x) } #ifndef __tan -weak_alias (__tan, tan) -# ifdef NO_LONG_DOUBLE -strong_alias (__tan, __tanl) -weak_alias (__tanl, tanl) -# endif +libm_alias_double (__tan, tan) #endif |