summaryrefslogtreecommitdiff
path: root/sysdeps/m68k/m680x0/fpu/s_llrint.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/m68k/m680x0/fpu/s_llrint.c')
-rw-r--r--sysdeps/m68k/m680x0/fpu/s_llrint.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/sysdeps/m68k/m680x0/fpu/s_llrint.c b/sysdeps/m68k/m680x0/fpu/s_llrint.c
index d3f4154f42..6ca1875869 100644
--- a/sysdeps/m68k/m680x0/fpu/s_llrint.c
+++ b/sysdeps/m68k/m680x0/fpu/s_llrint.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-double.h>
#include "mathimpl.h"
long long int
__llrint (double x)
{
int32_t e;
- u_int32_t h, l, s;
+ uint32_t h, l, s;
long long int result;
x = __m81_u(__rint) (x);
@@ -72,4 +73,4 @@ __llrint (double x)
return result;
}
-weak_alias (__llrint, llrint)
+libm_alias_double (__llrint, llrint)