Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libm/common/s_ilogb.c')
-rw-r--r--newlib/libm/common/s_ilogb.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/newlib/libm/common/s_ilogb.c b/newlib/libm/common/s_ilogb.c
index 00dfef633..4e3e69f12 100644
--- a/newlib/libm/common/s_ilogb.c
+++ b/newlib/libm/common/s_ilogb.c
@@ -13,7 +13,7 @@
/*
FUNCTION
- <<ilogb>>, <<ilogbf>>---get exponent of floating-point number
+ <<ilogb>>, <<ilogbf>>---get exponent of floating point number
INDEX
ilogb
INDEX
@@ -35,7 +35,7 @@ TRAD_SYNOPSIS
DESCRIPTION
- All nonzero, normal numbers can be described as <[m]> *
+ All non zero, normal numbers can be described as <[m]> *
2**<[p]>. <<ilogb>> and <<ilogbf>> examine the argument
<[val]>, and return <[p]>. The functions <<frexp>> and
<<frexpf>> are similar to <<ilogb>> and <<ilogbf>>, but also
@@ -44,7 +44,7 @@ DESCRIPTION
RETURNS
<<ilogb>> and <<ilogbf>> return the power of two used to form the
-floating-point argument. If <[val]> is <<0>>, they return <<-
+floating point argument. If <[val]> is <<0>>, they return <<-
INT_MAX>> (<<INT_MAX>> is defined in limits.h). If <[val]> is
infinite, or NaN, they return <<INT_MAX>>.