summaryrefslogtreecommitdiffstats
path: root/man3/remainder.3
diff options
context:
space:
mode:
Diffstat (limited to 'man3/remainder.3')
-rw-r--r--man3/remainder.362
1 files changed, 34 insertions, 28 deletions
diff --git a/man3/remainder.3 b/man3/remainder.3
index 035e42e13..df97879b6 100644
--- a/man3/remainder.3
+++ b/man3/remainder.3
@@ -15,7 +15,7 @@
.\" (walter.harms@informatik.uni-oldenburg.de)
.\" Modified 2003-11-18, 2004-10-05 aeb
.\"
-.TH remainder 3 2023-02-05 "Linux man-pages 6.03"
+.TH remainder 3 2023-07-20 "Linux man-pages 6.05.01"
.SH NAME
drem, dremf, dreml, remainder, remainderf, remainderl \- \
floating-point remainder function
@@ -26,15 +26,14 @@ Math library
.nf
.B #include <math.h>
.PP
-/* The C99 versions */
.BI "double remainder(double " x ", double " y );
.BI "float remainderf(float " x ", float " y );
.BI "long double remainderl(long double " x ", long double " y );
.PP
/* Obsolete synonyms */
-.BI "double drem(double " x ", double " y );
-.BI "float dremf(float " x ", float " y );
-.BI "long double dreml(long double " x ", long double " y );
+.BI "[[deprecated]] double drem(double " x ", double " y );
+.BI "[[deprecated]] float dremf(float " x ", float " y );
+.BI "[[deprecated]] long double dreml(long double " x ", long double " y );
.fi
.PP
.RS -4
@@ -154,14 +153,14 @@ is raised.
.SH ATTRIBUTES
For an explanation of the terms used in this section, see
.BR attributes (7).
-.ad l
-.nh
.TS
allbox;
lbx lb lb
l l l.
Interface Attribute Value
T{
+.na
+.nh
.BR drem (),
.BR dremf (),
.BR dreml (),
@@ -170,36 +169,43 @@ T{
.BR remainderl ()
T} Thread safety MT-Safe
.TE
-.hy
-.ad
.sp 1
.SH STANDARDS
.\" IEC 60559.
-The functions
-.BR remainder (),
-.BR remainderf (),
-and
+.TP
+.BR remainder ()
+.TQ
+.BR remainderf ()
+.TQ
.BR remainderl ()
-are specified in C99, POSIX.1-2001, and POSIX.1-2008.
-.PP
-The function
+C11, POSIX.1-2008.
+.TP
.BR drem ()
-is from 4.3BSD.
-The
-.I float
-and
-.I "long double"
-variants
+.TQ
.BR dremf ()
-and
+.TQ
.BR dreml ()
-exist on some systems, such as Tru64 and glibc2.
-Avoid the use of these functions in favor of
+None.
+.SH HISTORY
+.\" IEC 60559.
+.TP
.BR remainder ()
-etc.
+.TQ
+.BR remainderf ()
+.TQ
+.BR remainderl ()
+C99, POSIX.1-2001.
+.TP
+.BR drem ()
+4.3BSD.
+.TP
+.BR dremf ()
+.TQ
+.BR dreml ()
+Tru64, glibc2.
.SH BUGS
Before glibc 2.15,
-.\" http://sources.redhat.com/bugzilla/show_bug.cgi?id=6779
+.\" https://www.sourceware.org/bugzilla/show_bug.cgi?id=6779
the call
.PP
.in +4n
@@ -212,7 +218,7 @@ returned a NaN, as expected, but wrongly caused a domain error.
Since glibc 2.15, a silent NaN (i.e., no domain error) is returned.
.PP
Before glibc 2.15,
-.\" http://sources.redhat.com/bugzilla/show_bug.cgi?id=6783
+.\" https://www.sourceware.org/bugzilla/show_bug.cgi?id=6783
.I errno
was not set to
.B EDOM