diff options
Diffstat (limited to 'sysdeps/powerpc/powerpc32/fpu/s_llroundf.c')
-rw-r--r-- | sysdeps/powerpc/powerpc32/fpu/s_llroundf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/powerpc/powerpc32/fpu/s_llroundf.c b/sysdeps/powerpc/powerpc32/fpu/s_llroundf.c index 55452bac73..1fefb07793 100644 --- a/sysdeps/powerpc/powerpc32/fpu/s_llroundf.c +++ b/sysdeps/powerpc/powerpc32/fpu/s_llroundf.c @@ -19,6 +19,7 @@ #include <math.h> #include <math_private.h> #include <stdint.h> +#include <libm-alias-float.h> /* Round to the nearest integer, with values exactly on a 0.5 boundary rounded away from zero, regardless of the current rounding mode. @@ -69,4 +70,4 @@ __llroundf (float x) } return xr; } -weak_alias (__llroundf, llroundf) +libm_alias_float (__llround, llround) |