summaryrefslogtreecommitdiff
path: root/sysdeps/powerpc/powerpc32/fpu/s_llrintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/powerpc/powerpc32/fpu/s_llrintf.c')
-rw-r--r--sysdeps/powerpc/powerpc32/fpu/s_llrintf.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sysdeps/powerpc/powerpc32/fpu/s_llrintf.c b/sysdeps/powerpc/powerpc32/fpu/s_llrintf.c
index 7151bed1c9..c5e78fa050 100644
--- a/sysdeps/powerpc/powerpc32/fpu/s_llrintf.c
+++ b/sysdeps/powerpc/powerpc32/fpu/s_llrintf.c
@@ -1,5 +1,5 @@
/* Round a float value to a long long in the current rounding mode.
- Copyright (C) 1997-2016 Free Software Foundation, Inc.
+ Copyright (C) 1997-2018 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -19,6 +19,7 @@
#include <math.h>
#include <math_private.h>
#include <stdint.h>
+#include <libm-alias-float.h>
long long int
__llrintf (float x)
@@ -43,4 +44,4 @@ __llrintf (float x)
return (long long int) ((i0 & 0x80000000) != 0 ? -mant : mant);
}
}
-weak_alias (__llrintf, llrintf)
+libm_alias_float (__llrint, llrint)