diff options
Diffstat (limited to 'sysdeps/ieee754/flt-32/s_cosf.c')
-rw-r--r-- | sysdeps/ieee754/flt-32/s_cosf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/ieee754/flt-32/s_cosf.c b/sysdeps/ieee754/flt-32/s_cosf.c index 0affd406bb..5ed0bcaba3 100644 --- a/sysdeps/ieee754/flt-32/s_cosf.c +++ b/sysdeps/ieee754/flt-32/s_cosf.c @@ -20,6 +20,7 @@ static char rcsid[] = "$NetBSD: s_cosf.c,v 1.4 1995/05/10 20:47:03 jtc Exp $"; #include <errno.h> #include <math.h> #include <math_private.h> +#include <libm-alias-float.h> #ifndef COSF # define COSF_FUNC __cosf @@ -59,5 +60,5 @@ float COSF_FUNC(float x) } #ifndef COSF -weak_alias (__cosf, cosf) +libm_alias_float (__cos, cos) #endif |