From 59dd1693295c397760faffd1f918c120a3371644 Mon Sep 17 00:00:00 2001 From: jakub Date: Sun, 16 Jan 2011 20:48:24 +0000 Subject: PR libfortran/47322 * math/remquoq.c (remquoq): Use uint64_t type instead of u_int64_t. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@168872 138bc75d-0d04-0410-961f-82ee72b054a4 --- libquadmath/math/remquoq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libquadmath/math') diff --git a/libquadmath/math/remquoq.c b/libquadmath/math/remquoq.c index 3e3b4f68ce4..f7001afc3e5 100644 --- a/libquadmath/math/remquoq.c +++ b/libquadmath/math/remquoq.c @@ -29,7 +29,7 @@ __float128 remquoq (__float128 x, __float128 y, int *quo) { int64_t hx,hy; - u_int64_t sx,lx,ly,qs; + uint64_t sx,lx,ly,qs; int cquo; GET_FLT128_WORDS64 (hx, lx, x); -- cgit v1.2.3