This commit is contained in:
Michael Kerrisk 2007-07-09 20:29:37 +00:00
parent 8e857672fe
commit 7f45503bd8
2 changed files with 10 additions and 3 deletions

View File

@ -15,7 +15,10 @@ fmin, fminf, fminl \- find minimum value
.sp
Compile with \fI\-std=c99\fP; link with \fI\-lm\fP.
.SH DESCRIPTION
Find the lesser value of x and y.
Find the lesser value of
.I x
and
.IR y .
.SH "CONFORMING TO"
C99
.SH "SEE ALSO"

View File

@ -96,8 +96,12 @@ is non-zero or
.I fetestexcept(FE_INVALID | FE_DIVBYZERO | FE_OVERFLOW | FE_UNDERFLOW)
is non-zero, an error has occurred.
.LP
A range error occurs if x is too large.
A pole error occurs if x is a negative integer or zero.
A range error occurs if
.I x
is too large.
A pole error occurs if
.I x
is a negative integer or zero.
.SH "CONFORMING TO"
C99, SVr4, 4.3BSD
.SH "SEE ALSO"