diff mbox

[committed] Fix libquadmath bootstrap on freebsd (PR libfortran/47322)

Message ID 20110116205123.GC2724@tyan-ft48-01.lab.bos.redhat.com
State New
Headers show

Commit Message

Jakub Jelinek Jan. 16, 2011, 8:51 p.m. UTC
Hi!

Gerald has just reported a problem in remquoq.c - FX and I have replaced
u_int64_t uses from glibc with uint64_t, but apparently one occurrence
slipped through in one of my patches.

Fixed thusly, committed as obvious.

2011-01-16  Jakub Jelinek  <jakub@redhat.com>

	PR libfortran/47322
	* math/remquoq.c (remquoq): Use uint64_t type instead of u_int64_t.


	Jakub
diff mbox

Patch

--- libquadmath/math/remquoq.c	(revision 168871)
+++ libquadmath/math/remquoq.c	(working copy)
@@ -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);