Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/lib/libm/src/s_logb.c,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- src/lib/libm/src/s_logb.c 1997/10/09 11:32:48 1.9 +++ src/lib/libm/src/s_logb.c 1999/07/02 15:37:43 1.10 @@ -5,14 +5,14 @@ * * 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. * ==================================================== */ #include #if defined(LIBM_SCCS) && !defined(lint) -__RCSID("$NetBSD: s_logb.c,v 1.9 1997/10/09 11:32:48 lukem Exp $"); +__RCSID("$NetBSD: s_logb.c,v 1.10 1999/07/02 15:37:43 simonb Exp $"); #endif /* @@ -37,7 +37,7 @@ __RCSID("$NetBSD: s_logb.c,v 1.9 1997/10 if((ix|lx)==0) return -1.0/fabs(x); if(ix>=0x7ff00000) return x*x; if((ix>>=20)==0) /* IEEE 754 logb */ - return -1022.0; + return -1022.0; else - return (double) (ix-1023); + return (double) (ix-1023); }