diff options
Diffstat (limited to 'libjava/java/lang/s_rint.c')
-rw-r--r-- | libjava/java/lang/s_rint.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libjava/java/lang/s_rint.c b/libjava/java/lang/s_rint.c index 9936a49..5d3f811 100644 --- a/libjava/java/lang/s_rint.c +++ b/libjava/java/lang/s_rint.c @@ -6,7 +6,7 @@ * * Developed at SunPro, a Sun Microsystems, Inc. business. * Permission to use, copy, modify, and distribute this - * software is freely granted, provided that this notice + * software is freely granted, provided that this notice * is preserved. * ==================================================== */ @@ -28,7 +28,7 @@ #ifdef __STDC__ static const double #else -static double +static double #endif TWO52[2]={ 4.50359962737049600000e+15, /* 0x43300000, 0x00000000 */ @@ -42,15 +42,15 @@ TWO52[2]={ double x; #endif { - __int32_t i0,j0,sx; - __uint32_t i,i1; + int32_t i0,j0,sx; + uint32_t i,i1; double t; volatile double w; EXTRACT_WORDS(i0,i1,x); sx = (i0>>31)&1; j0 = ((i0>>20)&0x7ff)-0x3ff; if(j0<20) { - if(j0<0) { + if(j0<0) { if(((i0&0x7fffffff)|i1)==0) return x; i1 |= (i0&0x0fffff); i0 &= 0xfffe0000; @@ -74,7 +74,7 @@ TWO52[2]={ if(j0==0x400) return x+x; /* inf or NaN */ else return x; /* x is integral */ } else { - i = ((__uint32_t)(0xffffffff))>>(j0-20); + i = ((uint32_t)(0xffffffff))>>(j0-20); if((i1&i)==0) return x; /* x is integral */ i>>=1; if((i1&i)!=0) i1 = (i1&(~i))|((0x40000000)>>(j0-20)); |