1 .\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
2 .\" and Copyright 2008, Linux Foundation, written by Michael Kerrisk
3 .\" <mtk.manpages@gmail.com>
5 .\" %%%LICENSE_START(VERBATIM)
6 .\" Permission is granted to make and distribute verbatim copies of this
7 .\" manual provided the copyright notice and this permission notice are
8 .\" preserved on all copies.
10 .\" Permission is granted to copy and distribute modified versions of this
11 .\" manual under the conditions for verbatim copying, provided that the
12 .\" entire resulting derived work is distributed under the terms of a
13 .\" permission notice identical to this one.
15 .\" Since the Linux kernel and libraries are constantly changing, this
16 .\" manual page may be incorrect or out-of-date. The author(s) assume no
17 .\" responsibility for errors or omissions, or for damages resulting from
18 .\" the use of the information contained herein. The author(s) may not
19 .\" have taken the same level of care in the production of this manual,
20 .\" which is licensed free of charge, as they might when working
23 .\" Formatted or processed versions of this manual, if unaccompanied by
24 .\" the source, must acknowledge the copyright and authors of this work.
27 .\" References consulted:
28 .\" Linux libc source code
29 .\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991)
32 .\" Modified 1993-07-24 by Rik Faith (faith@cs.unc.edu)
33 .\" Modified 2002-08-10 Walter Harms
34 .\" (walter.harms@informatik.uni-oldenburg.de)
35 .\" Modified 2003-11-18, 2004-10-05 aeb
37 .TH REMAINDER 3 2017-09-15 "" "Linux Programmer's Manual"
39 drem, dremf, dreml, remainder, remainderf, remainderl \- \
40 floating-point remainder function
45 /* The C99 versions */
46 .BI "double remainder(double " x ", double " y );
47 .BI "float remainderf(float " x ", float " y );
48 .BI "long double remainderl(long double " x ", long double " y );
50 /* Obsolete synonyms */
51 .BI "double drem(double " x ", double " y );
52 .BI "float dremf(float " x ", float " y );
53 .BI "long double dreml(long double " x ", long double " y );
59 Feature Test Macro Requirements for glibc (see
60 .BR feature_test_macros (7)):
66 _ISOC99_SOURCE || _POSIX_C_SOURCE\ >=\ 200112L
67 || _XOPEN_SOURCE\ >=\ 500
68 .\" || _XOPEN_SOURCE\ &&\ _XOPEN_SOURCE_EXTENDED
69 || /* Since glibc 2.19: */ _DEFAULT_SOURCE
70 || /* Glibc versions <= 2.19: */ _BSD_SOURCE || _SVID_SOURCE
76 _ISOC99_SOURCE || _POSIX_C_SOURCE\ >=\ 200112L
77 || /* Since glibc 2.19: */ _DEFAULT_SOURCE
78 || /* Glibc versions <= 2.19: */ _BSD_SOURCE || _SVID_SOURCE
85 /* Since glibc 2.19: */ _DEFAULT_SOURCE
86 || /* Glibc versions <= 2.19: */ _BSD_SOURCE || _SVID_SOURCE
91 functions compute the remainder of dividing
96 \fIx\fP\-\fIn\fP*\fIy\fP,
101 rounded to the nearest integer.
102 If the absolute value of
103 \fIx\fP\-\fIn\fP*\fIy\fP
106 is chosen to be even.
108 These functions are unaffected by the current rounding mode (see
113 function does precisely the same thing.
116 functions return the floating-point remainder,
117 \fIx\fP\-\fIn\fP*\fIy\fP.
118 If the return value is 0, it has the sign of
125 is a NaN, a NaN is returned.
133 a domain error occurs, and
139 .\" FIXME . Instead, glibc gives a domain error even if x is a NaN
143 .\" Interestingly, remquo(3) does not have the same problem.
144 a domain error occurs, and
149 for information on how to determine whether an error has occurred
150 when calling these functions.
152 The following errors can occur:
154 Domain error: \fIx\fP is an infinity and \fIy\fP is not a NaN
159 An invalid floating-point exception
163 These functions do not set
167 Domain error: \fIy\fP is zero\" [XXX see bug above] and \fIx\fP is not a NaN
171 An invalid floating-point exception
175 For an explanation of the terms used in this section, see
181 Interface Attribute Value
191 T} Thread safety MT-Safe
200 are specified in C99, POSIX.1-2001, and POSIX.1-2008.
213 exist on some systems, such as Tru64 and glibc2.
214 Avoid the use of these functions in favor of
219 .\" http://sources.redhat.com/bugzilla/show_bug.cgi?id=6779
222 remainder(nan(""), 0);
224 returned a NaN, as expected, but wrongly caused a domain error.
225 Since glibc 2.15, a silent NaN (i.e., no domain error) is returned.
228 .\" http://sources.redhat.com/bugzilla/show_bug.cgi?id=6783
232 for the domain error that occurs when
238 The call "remainder(29.0, 3.0)" returns \-1.