diff options
Diffstat (limited to 'libm/s_ilogb.c')
-rw-r--r-- | libm/s_ilogb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libm/s_ilogb.c b/libm/s_ilogb.c index ee81570aa..3a6e964e8 100644 --- a/libm/s_ilogb.c +++ b/libm/s_ilogb.c @@ -5,7 +5,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. * ==================================================== */ @@ -36,7 +36,7 @@ static char rcsid[] = "$NetBSD: s_ilogb.c,v 1.9 1995/05/10 20:47:28 jtc Exp $"; hx &= 0x7fffffff; if(hx<0x00100000) { GET_LOW_WORD(lx,x); - if((hx|lx)==0) + if((hx|lx)==0) return 0x80000001; /* ilogb(0) = 0x80000001 */ else /* subnormal x */ if(hx==0) { |