diff options
Diffstat (limited to 'sysdeps/ieee754/flt-32/s_rintf.c')
-rw-r--r-- | sysdeps/ieee754/flt-32/s_rintf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/ieee754/flt-32/s_rintf.c b/sysdeps/ieee754/flt-32/s_rintf.c index 8a907488f7..db6f260a0b 100644 --- a/sysdeps/ieee754/flt-32/s_rintf.c +++ b/sysdeps/ieee754/flt-32/s_rintf.c @@ -15,6 +15,7 @@ #include <math.h> #include <math_private.h> +#include <libm-alias-float.h> static const float TWO23[2]={ @@ -46,5 +47,5 @@ __rintf(float x) return w-TWO23[sx]; } #ifndef __rintf -weak_alias (__rintf, rintf) +libm_alias_float (__rint, rint) #endif |