summaryrefslogtreecommitdiff
path: root/sysdeps/m68k/m680x0/fpu/s_llrintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/m68k/m680x0/fpu/s_llrintf.c')
-rw-r--r--sysdeps/m68k/m680x0/fpu/s_llrintf.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/sysdeps/m68k/m680x0/fpu/s_llrintf.c b/sysdeps/m68k/m680x0/fpu/s_llrintf.c
index 8c8ad56023..f972cf99f1 100644
--- a/sysdeps/m68k/m680x0/fpu/s_llrintf.c
+++ b/sysdeps/m68k/m680x0/fpu/s_llrintf.c
@@ -1,6 +1,6 @@
/* Round argument to nearest integral value according to current rounding
direction.
- 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.
Contributed by Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
@@ -20,13 +20,14 @@
#include <math.h>
#include <math_private.h>
+#include <libm-alias-float.h>
#include "mathimpl.h"
long long int
__llrintf (float x)
{
int32_t e;
- u_int32_t i, s;
+ uint32_t i, s;
long long int result;
x = __m81_u(__rintf) (x);
@@ -62,4 +63,4 @@ __llrintf (float x)
return result;
}
-weak_alias (__llrintf, llrintf)
+libm_alias_float (__llrint, llrint)