diff options
Diffstat (limited to 'sysdeps/powerpc/powerpc64/fpu/s_llroundf.S')
-rw-r--r-- | sysdeps/powerpc/powerpc64/fpu/s_llroundf.S | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sysdeps/powerpc/powerpc64/fpu/s_llroundf.S b/sysdeps/powerpc/powerpc64/fpu/s_llroundf.S index 3e910ac322..5f2f6a32c1 100644 --- a/sysdeps/powerpc/powerpc64/fpu/s_llroundf.S +++ b/sysdeps/powerpc/powerpc64/fpu/s_llroundf.S @@ -17,6 +17,7 @@ <http://www.gnu.org/licenses/>. */ #include <sysdep.h> +#include <libm-alias-float.h> .section ".toc","aw" .LC0: /* 2^23 */ @@ -83,6 +84,6 @@ ENTRY (__llroundf) END (__llroundf) strong_alias (__llroundf, __lroundf) -weak_alias (__llroundf, llroundf) -weak_alias (__lroundf, lroundf) +libm_alias_float (__llround, llround) +libm_alias_float (__lround, lround) |