diff options
author | das <das@FreeBSD.org> | 2005-02-04 18:26:06 +0000 |
---|---|---|
committer | das <das@FreeBSD.org> | 2005-02-04 18:26:06 +0000 |
commit | a47af911ba88a733157f219bcea374aafc0e6a34 (patch) | |
tree | 358c37c6dfb32659eea19d2a72397142931bc562 /lib/msun/src/e_remainder.c | |
parent | e8403b23681c8ac8f2c86499943b43c359a4e301 (diff) | |
download | FreeBSD-src-a47af911ba88a733157f219bcea374aafc0e6a34.zip FreeBSD-src-a47af911ba88a733157f219bcea374aafc0e6a34.tar.gz |
Reduce diffs against vendor source (Sun fdlibm 5.3).
Diffstat (limited to 'lib/msun/src/e_remainder.c')
-rw-r--r-- | lib/msun/src/e_remainder.c | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/lib/msun/src/e_remainder.c b/lib/msun/src/e_remainder.c index ba226b7..1cea6c1 100644 --- a/lib/msun/src/e_remainder.c +++ b/lib/msun/src/e_remainder.c @@ -1,11 +1,12 @@ -/* @(#)e_remainder.c 5.1 93/09/24 */ + +/* @(#)e_remainder.c 1.3 95/01/18 */ /* * ==================================================== * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. * - * Developed at SunPro, a Sun Microsystems, Inc. business. + * Developed at SunSoft, 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. * ==================================================== */ @@ -15,11 +16,11 @@ static char rcsid[] = "$FreeBSD$"; #endif /* __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. */ |