diff options
Diffstat (limited to 'libjava/java/lang/e_remainder.c')
-rw-r--r-- | libjava/java/lang/e_remainder.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libjava/java/lang/e_remainder.c b/libjava/java/lang/e_remainder.c index ae7ce649ad5..4716d8d05fd 100644 --- a/libjava/java/lang/e_remainder.c +++ b/libjava/java/lang/e_remainder.c @@ -6,17 +6,17 @@ * * 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. * ==================================================== */ /* __ieee754_remainder(x,p) - * Return : - * returns x REM p = x - [x/p]*p as if in infinite - * precise arithmetic, where [x/p] is the (infinite bit) + * Return : + * returns x REM p = x - [x/p]*p as if in infinite + * precise arithmetic, where [x/p] is the (infinite bit) * integer nearest x/p (in half way case choose the even one). - * Method : + * Method : * Based on fmod() return x-[x/p]chopped*p exactlp. */ @@ -38,8 +38,8 @@ static double zero = 0.0; double x,p; #endif { - __int32_t hx,hp; - __uint32_t sx,lx,lp; + int32_t hx,hp; + uint32_t sx,lx,lp; double p_half; EXTRACT_WORDS(hx,lx,x); |