summaryrefslogtreecommitdiff
path: root/sysdeps/i386/fpu/s_nexttowardf.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/i386/fpu/s_nexttowardf.c')
-rw-r--r--sysdeps/i386/fpu/s_nexttowardf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/i386/fpu/s_nexttowardf.c b/sysdeps/i386/fpu/s_nexttowardf.c
index e1156d1e4f..6e11ace223 100644
--- a/sysdeps/i386/fpu/s_nexttowardf.c
+++ b/sysdeps/i386/fpu/s_nexttowardf.c
@@ -20,13 +20,14 @@ static char rcsid[] = "$NetBSD: $";
#include <errno.h>
#include <math.h>
+#include <math-barriers.h>
#include <math_private.h>
#include <float.h>
float __nexttowardf(float x, long double y)
{
int32_t hx,ix,iy;
- u_int32_t hy,ly,esy;
+ uint32_t hy,ly,esy;
GET_FLOAT_WORD(hx,x);
GET_LDOUBLE_WORDS(esy,hy,ly,y);