diff options
Diffstat (limited to 'man3')
| -rw-r--r-- | man3/atanh.3 | 4 | ||||
| -rw-r--r-- | man3/copysign.3 | 2 | ||||
| -rw-r--r-- | man3/fma.3 | 2 | ||||
| -rw-r--r-- | man3/fmod.3 | 2 | ||||
| -rw-r--r-- | man3/lgamma.3 | 4 | ||||
| -rw-r--r-- | man3/modf.3 | 2 | ||||
| -rw-r--r-- | man3/pow.3 | 10 | ||||
| -rw-r--r-- | man3/remainder.3 | 4 | ||||
| -rw-r--r-- | man3/scalb.3 | 2 | ||||
| -rw-r--r-- | man3/sinh.3 | 2 | ||||
| -rw-r--r-- | man3/tanh.3 | 2 | ||||
| -rw-r--r-- | man3/y0.3 | 2 |
12 files changed, 19 insertions, 19 deletions
diff --git a/man3/atanh.3 b/man3/atanh.3 index 3ecd79be85..6e8be43045 100644 --- a/man3/atanh.3 +++ b/man3/atanh.3 @@ -116,7 +116,7 @@ is raised. Pole error: \fIx\fP is +1 or \-1 .I errno is set to -.BR ERANGE +.BR ERANGE (but see BUGS). .\" FIXME . glibc actually gives EDOM for this case A divide-by-zero floating-point exception @@ -130,7 +130,7 @@ also conforms to SVr4, 4.3BSD, C89. .SH BUGS For a pole error, -.\" +.\" .\" FIXME . this is as at glibc 2.8; check later if this bug is fixed .\" This can be seen in sysdeps/ieee754/k_standard.c .\" Bug raised: http://sources.redhat.com/bugzilla/show_bug.cgi?id=6759 diff --git a/man3/copysign.3 b/man3/copysign.3 index ea8e0f613f..d4bf803172 100644 --- a/man3/copysign.3 +++ b/man3/copysign.3 @@ -70,7 +70,7 @@ a NaN with the sign bit of \fIy\fP is returned. .SH ERRORS No errors occur. .SH "CONFORMING TO" -C99, POSIX.1-2001. +C99, POSIX.1-2001. .\" 4.3BSD. This function is defined in IEC 559 (and the appendix with recommended functions in IEEE 754/IEEE 854). diff --git a/man3/fma.3 b/man3/fma.3 index 8117877131..a435710210 100644 --- a/man3/fma.3 +++ b/man3/fma.3 @@ -103,7 +103,7 @@ If .I x times .I y -is not an infinity times zero (or vice versa), and +is not an infinity times zero (or vice versa), and .I z is a NaN, a NaN is returned. diff --git a/man3/fmod.3 b/man3/fmod.3 index 7fa62ea41f..68f875b9a5 100644 --- a/man3/fmod.3 +++ b/man3/fmod.3 @@ -81,7 +81,7 @@ is a NaN, a NaN is returned. If .I x -is an infinity, +is an infinity, a domain error occurs, and a NaN is returned. diff --git a/man3/lgamma.3 b/man3/lgamma.3 index ad20c205f3..8ae8b6e2da 100644 --- a/man3/lgamma.3 +++ b/man3/lgamma.3 @@ -121,7 +121,7 @@ Pole error: \fIx\fP is a non-positive integer .I errno is set to .\" FIXME . glibc 2.8 gives EDOM! -.BR ERANGE +.BR ERANGE (but see BUGS). A divide-by-zero floating-point exception .RB ( FE_DIVBYZERO ) @@ -147,7 +147,7 @@ The functions are non-standard, but present on several other systems. .SH BUGS For a pole error, -.\" +.\" .\" FIXME . this is as at glibc 2.8; check later if this bug is fixed .\" Bug raised: http://sources.redhat.com/bugzilla/show_bug.cgi?id=6777 .I errno diff --git a/man3/modf.3 b/man3/modf.3 index 76d0c478fe..cfb1e42880 100644 --- a/man3/modf.3 +++ b/man3/modf.3 @@ -70,7 +70,7 @@ function returns the fractional part of \fIx\fP. If .I x is a NaN, a NaN is returned, and -.IR *iptr +.IR *iptr is set to a NaN. If diff --git a/man3/pow.3 b/man3/pow.3 index 077d154333..2588e1d287 100644 --- a/man3/pow.3 +++ b/man3/pow.3 @@ -252,15 +252,15 @@ is returned. .\" pow(-0.5,-DBL_MAX)=nan .\" EDOM FE_INVALID nan; fail-errno fail-except fail-result; .\" FAIL (expected: range-error-overflow (ERANGE, FE_OVERFLOW); +INF) -.\" +.\" .\" pow(-1.5,-DBL_MAX)=nan .\" EDOM FE_INVALID nan; fail-errno fail-except fail-result; .\" FAIL (expected: range-error-underflow (ERANGE, FE_UNDERFLOW); +0) -.\" +.\" .\" pow(-0.5,DBL_MAX)=nan .\" EDOM FE_INVALID nan; fail-errno fail-except fail-result; .\" FAIL (expected: range-error-underflow (ERANGE, FE_UNDERFLOW); +0) -.\" +.\" .\" pow(-1.5,DBL_MAX)=nan .\" EDOM FE_INVALID nan; fail-errno fail-except fail-result; .\" FAIL (expected: range-error-overflow (ERANGE, FE_OVERFLOW); +INF) @@ -282,7 +282,7 @@ is raised. Pole error: \fIx\fP is zero, and \fIy\fP is negative .I errno is set to -.BR ERANGE +.BR ERANGE (but see BUGS). .\" FIXME . glibc 2.8 gives EDOM A divide-by-zero floating-point exception @@ -312,7 +312,7 @@ also conforms to SVr4, 4.3BSD, C89. .SH BUGS For a pole error, -.\" +.\" .\" FIXME . this is as at glibc 2.8; check later if this bug is fixed .\" Bug raised: http://sources.redhat.com/bugzilla/show_bug.cgi?id=6776 .I errno diff --git a/man3/remainder.3 b/man3/remainder.3 index d98c24ce4f..a20fd844d0 100644 --- a/man3/remainder.3 +++ b/man3/remainder.3 @@ -87,7 +87,7 @@ where is the value .IR "x\ /\ y" , rounded to the nearest integer. -If the absolute value of +If the absolute value of \fIx\fP\-\fIn\fP*\fIy\fP is 0.5, .I n @@ -113,7 +113,7 @@ is a NaN, a NaN is returned. If .I x -is an infinity, +is an infinity, and .I y is not a NaN, diff --git a/man3/scalb.3 b/man3/scalb.3 index 55f0456595..b0e85c745a 100644 --- a/man3/scalb.3 +++ b/man3/scalb.3 @@ -105,7 +105,7 @@ If is an infinity, and .I exp -is negative infinity, +is negative infinity, a domain error occurs, and a NaN is returned. diff --git a/man3/sinh.3 b/man3/sinh.3 index a59f516b18..6e81e65dbc 100644 --- a/man3/sinh.3 +++ b/man3/sinh.3 @@ -94,7 +94,7 @@ or respectively, with the same sign as .IR x . .\" -.\" POSIX.1-2001 documents an optional range error (underflow) +.\" POSIX.1-2001 documents an optional range error (underflow) .\" for subnormal x; .\" glibc 2.8 does not do this. .SH ERRORS diff --git a/man3/tanh.3 b/man3/tanh.3 index 6ee0c70d66..859c09e0ba 100644 --- a/man3/tanh.3 +++ b/man3/tanh.3 @@ -83,7 +83,7 @@ If is positive infinity (negative infinity), +1 (\-1) is returned. .\" -.\" POSIX.1-2001 documents an optional range error (underflow) +.\" POSIX.1-2001 documents an optional range error (underflow) .\" for subnormal x; .\" glibc 2.8 does not do this. .SH ERRORS @@ -171,7 +171,7 @@ Pole error: \fIx\fP is 0.0 .I errno is set to .\" FIXME . y0(0.0) gives EDOM -.BR ERANGE +.BR ERANGE (but see BUGS). No .B FE_DIVBYZERO |
