diff options
Diffstat (limited to 'sysdeps/ieee754/flt-32/s_cbrtf.c')
-rw-r--r-- | sysdeps/ieee754/flt-32/s_cbrtf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/ieee754/flt-32/s_cbrtf.c b/sysdeps/ieee754/flt-32/s_cbrtf.c index 1ac294c189..a6f368770a 100644 --- a/sysdeps/ieee754/flt-32/s_cbrtf.c +++ b/sysdeps/ieee754/flt-32/s_cbrtf.c @@ -20,6 +20,7 @@ #include <math.h> #include <math_private.h> +#include <libm-alias-float.h> #define CBRT2 1.2599210498948731648 /* 2^(1/3) */ @@ -60,4 +61,4 @@ __cbrtf (float x) return __ldexpf (x > 0.0 ? ym : -ym, xe / 3); } -weak_alias (__cbrtf, cbrtf) +libm_alias_float (__cbrt, cbrt) |