summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Wright <jason@cvs.openbsd.org>2003-02-28 19:58:42 +0000
committerJason Wright <jason@cvs.openbsd.org>2003-02-28 19:58:42 +0000
commite394030878614cde6495a6e5dd58f3550a41526a (patch)
treeee802125a0e71041c00cbb82fe47460342f41935
parent58577474d58e8e6b07271b6f33075a2bca215c88 (diff)
mention single precision versions
-rw-r--r--lib/libm/man/ieee.326
1 files changed, 25 insertions, 1 deletions
diff --git a/lib/libm/man/ieee.3 b/lib/libm/man/ieee.3
index a11c50dec31..1b5e354d3b1 100644
--- a/lib/libm/man/ieee.3
+++ b/lib/libm/man/ieee.3
@@ -1,4 +1,4 @@
-.\" $OpenBSD: ieee.3,v 1.6 2000/03/02 00:29:50 todd Exp $
+.\" $OpenBSD: ieee.3,v 1.7 2003/02/28 19:58:41 jason Exp $
.\" Copyright (c) 1985, 1991 Regents of the University of California.
.\" All rights reserved.
.\"
@@ -84,6 +84,10 @@ returns
.Fa x
with its sign changed to
.Fa y Ns 's.
+The
+.Fn copysignf
+function is a single precision version of
+.Fn copysign .
.Pp
.Fn finite
returns the value 1 just when
@@ -97,6 +101,10 @@ zero is returned
= \*(If or
.Fa x
is \*(Na
+The
+.Fn finitef
+function is a single precision version of
+.Fn finite .
.Pp
.Fn ilogb
returns
@@ -110,12 +118,20 @@ and
.Fn ilogb 0
returns
.Dv INT_MIN .
+The
+.Fn ilogbf
+function is a single precision version of
+.Fn ilogb .
.Pp
.Fn nextafter
returns the next machine representable number from
.Fa x
in direction
.Fa y .
+The
+.Fn nextafterf
+function is a single precision version of
+.Fn nextafter .
.Pp
.Fn remainder
returns the remainder
@@ -154,11 +170,19 @@ But
and
.Fn remainder \*(If 0
are invalid operations that produce a \*(Na.
+The
+.Fn remainderf
+function is a single precision version of
+.Fn remainder .
.Pp
.Fn scalbn
returns
.Fa x Ns \(**(2** Ns Fa n )
computed by exponent manipulation.
+The
+.Fn scalbnf
+function is a single precision version of
+.Fn scalbn .
.Sh SEE ALSO
.Xr math 3
.Sh HISTORY