diff options
Diffstat (limited to 'math/s_nextafter.c')
-rw-r--r-- | math/s_nextafter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/math/s_nextafter.c b/math/s_nextafter.c index dfa5e860c4..72419cbe9a 100644 --- a/math/s_nextafter.c +++ b/math/s_nextafter.c @@ -33,7 +33,7 @@ static char rcsid[] = "$NetBSD: s_nextafter.c,v 1.8 1995/05/10 20:47:58 jtc Exp double __nextafter(double x, double y) { int32_t hx,hy,ix,iy; - u_int32_t lx,ly; + uint32_t lx,ly; EXTRACT_WORDS(hx,lx,x); EXTRACT_WORDS(hy,ly,y); |