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/math/s_frexp.c')
-rw-r--r--newlib/libm/math/s_frexp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/newlib/libm/math/s_frexp.c b/newlib/libm/math/s_frexp.c
index aaa36068a..5a396c7a1 100644
--- a/newlib/libm/math/s_frexp.c
+++ b/newlib/libm/math/s_frexp.c
@@ -36,17 +36,17 @@ TRAD_SYNOPSIS
DESCRIPTION
- All non zero, normal numbers can be described as <[m]> * 2**<[p]>.
+ All nonzero, normal numbers can be described as <[m]> * 2**<[p]>.
<<frexp>> represents the double <[val]> as a mantissa <[m]>
and a power of two <[p]>. The resulting mantissa will always
be greater than or equal to <<0.5>>, and less than <<1.0>> (as
long as <[val]> is nonzero). The power of two will be stored
in <<*>><[exp]>.
-@ifinfo
+@ifnottex
<[m]> and <[p]> are calculated so that
<[val]> is <[m]> times <<2>> to the power <[p]>.
-@end ifinfo
+@end ifnottex
@tex
<[m]> and <[p]> are calculated so that
$ val = m \times 2^p $.