malloc.3: ffix
[man-pages.git] / man3 / fabs.3
blob6db776e8d04b82f6dbd40329dddff1563cbbf611
1 .\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
2 .\"
3 .\" %%%LICENSE_START(VERBATIM)
4 .\" Permission is granted to make and distribute verbatim copies of this
5 .\" manual provided the copyright notice and this permission notice are
6 .\" preserved on all copies.
7 .\"
8 .\" Permission is granted to copy and distribute modified versions of this
9 .\" manual under the conditions for verbatim copying, provided that the
10 .\" entire resulting derived work is distributed under the terms of a
11 .\" permission notice identical to this one.
12 .\"
13 .\" Since the Linux kernel and libraries are constantly changing, this
14 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
15 .\" responsibility for errors or omissions, or for damages resulting from
16 .\" the use of the information contained herein.  The author(s) may not
17 .\" have taken the same level of care in the production of this manual,
18 .\" which is licensed free of charge, as they might when working
19 .\" professionally.
20 .\"
21 .\" Formatted or processed versions of this manual, if unaccompanied by
22 .\" the source, must acknowledge the copyright and authors of this work.
23 .\" %%%LICENSE_END
24 .\"
25 .\" References consulted:
26 .\"     Linux libc source code
27 .\"     Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991)
28 .\"     386BSD man pages
29 .\" Modified Sat Jul 24 19:42:04 1993 by Rik Faith (faith@cs.unc.edu)
30 .\" Added fabsl, fabsf, aeb, 2001-06-07
31 .\"
32 .TH FABS 3  2021-03-22 "" "Linux Programmer's Manual"
33 .SH NAME
34 fabs, fabsf, fabsl \- absolute value of floating-point number
35 .SH SYNOPSIS
36 .nf
37 .B #include <math.h>
38 .PP
39 .BI "double fabs(double " x );
40 .BI "float fabsf(float " x );
41 .BI "long double fabsl(long double " x );
42 .fi
43 .PP
44 Link with \fI\-lm\fP.
45 .PP
46 .RS -4
47 Feature Test Macro Requirements for glibc (see
48 .BR feature_test_macros (7)):
49 .RE
50 .PP
51 .BR fabsf (),
52 .BR fabsl ():
53 .nf
54     _ISOC99_SOURCE || _POSIX_C_SOURCE >= 200112L
55         || /* Since glibc 2.19: */ _DEFAULT_SOURCE
56         || /* Glibc <= 2.19: */ _BSD_SOURCE || _SVID_SOURCE
57 .fi
58 .SH DESCRIPTION
59 These functions return the absolute value of the floating-point
60 number
61 .IR x .
62 .SH RETURN VALUE
63 These functions return the absolute value of
64 .IR x .
65 .PP
67 .I x
68 is a NaN, a NaN is returned.
69 .PP
71 .I x
72 is \-0, +0 is returned.
73 .PP
75 .I x
76 is negative infinity or positive infinity, positive infinity is returned.
77 .SH ERRORS
78 No errors occur.
79 .SH ATTRIBUTES
80 For an explanation of the terms used in this section, see
81 .BR attributes (7).
82 .ad l
83 .nh
84 .TS
85 allbox;
86 lbx lb lb
87 l l l.
88 Interface       Attribute       Value
90 .BR fabs (),
91 .BR fabsf (),
92 .BR fabsl ()
93 T}      Thread safety   MT-Safe
94 .TE
95 .hy
96 .ad
97 .sp 1
98 .SH CONFORMING TO
99 C99, POSIX.1-2001, POSIX.1-2008.
101 The variant returning
102 .I double
103 also conforms to
104 SVr4, 4.3BSD, C89.
105 .SH SEE ALSO
106 .BR abs (3),
107 .BR cabs (3),
108 .BR ceil (3),
109 .BR floor (3),
110 .BR labs (3),
111 .BR rint (3)