diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-06-30 04:04:20 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-06-30 04:04:20 +0000 |
commit | 95fdc6a0f61a389e92a6b84250c2286b4808b626 (patch) | |
tree | 54afe4d2de7ab4aeb9a6d0943ab90d8ddc794c0a /manual/arith.texi | |
parent | 8b8cc76fa47fe0819e5e52e29c6674e799df646e (diff) | |
download | glibc-95fdc6a0f61a389e92a6b84250c2286b4808b626.tar.gz glibc-95fdc6a0f61a389e92a6b84250c2286b4808b626.tar.xz glibc-95fdc6a0f61a389e92a6b84250c2286b4808b626.zip |
Update.
2002-06-19 Steven Munroe <sjmunroe@vnet.ibm.com> * Examples/ex9.c (main): Use list of children and join them. (thread): Do not call exit.
Diffstat (limited to 'manual/arith.texi')
-rw-r--r-- | manual/arith.texi | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/manual/arith.texi b/manual/arith.texi index c40ba3c59e..0f2e6fe86d 100644 --- a/manual/arith.texi +++ b/manual/arith.texi @@ -755,9 +755,9 @@ is a simple example of the way to use @code{fetestexcept}: feclearexcept (FE_ALL_EXCEPT); f = compute (); raised = fetestexcept (FE_OVERFLOW | FE_INVALID); - if (raised & FE_OVERFLOW) @{ /* ... */ @} - if (raised & FE_INVALID) @{ /* ... */ @} - /* ... */ + if (raised & FE_OVERFLOW) @{ /* @dots{} */ @} + if (raised & FE_INVALID) @{ /* @dots{} */ @} + /* @dots{} */ @} @end smallexample @@ -2396,8 +2396,8 @@ or to the largest representable value if the floating-point format doesn't support infinities. You can prepend a @code{"+"} or @code{"-"} to specify the sign. Case is ignored when scanning these strings. -The strings @code{"nan"} and @code{"nan(@var{chars...})"} are converted -to NaN. Again, case is ignored. If @var{chars...} are provided, they +The strings @code{"nan"} and @code{"nan(@var{chars@dots{}})"} are converted +to NaN. Again, case is ignored. If @var{chars@dots{}} are provided, they are used in some unspecified fashion to select a particular representation of NaN (there can be several). |