diff options
Diffstat (limited to 'math/w_sinhf_compat.c')
-rw-r--r-- | math/w_sinhf_compat.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/math/w_sinhf_compat.c b/math/w_sinhf_compat.c index 1310ccf93b..ac336e8b9b 100644 --- a/math/w_sinhf_compat.c +++ b/math/w_sinhf_compat.c @@ -20,6 +20,7 @@ #include <math.h> #include <math_private.h> #include <math-svid-compat.h> +#include <libm-alias-float.h> #if LIBM_SVID_COMPAT float @@ -32,5 +33,5 @@ __sinhf (float x) return z; } -weak_alias (__sinhf, sinhf) +libm_alias_float (__sinh, sinh) #endif |