mount_setattr.2: Update supported file-systems
[man-pages.git] / man3 / ceil.3
blob19792061607fe4e8ec3c851f170bfe7f0df38fff
1 '\" t
2 .\" Copyright 2001 Andries Brouwer <aeb@cwi.nl>.
3 .\" and Copyright 2008, Linux Foundation, written by Michael Kerrisk
4 .\"     <mtk.manpages@gmail.com>
5 .\"
6 .\" SPDX-License-Identifier: Linux-man-pages-copyleft
7 .\"
8 .TH ceil 3 (date) "Linux man-pages (unreleased)"
9 .SH NAME
10 ceil, ceilf, ceill \- ceiling function: smallest integral value not
11 less than argument
12 .SH LIBRARY
13 Math library
14 .RI ( libm ", " \-lm )
15 .SH SYNOPSIS
16 .nf
17 .B #include <math.h>
19 .BI "double ceil(double " x );
20 .BI "float ceilf(float " x );
21 .BI "long double ceill(long double " x );
22 .fi
24 .RS -4
25 Feature Test Macro Requirements for glibc (see
26 .BR feature_test_macros (7)):
27 .RE
29 .BR ceilf (),
30 .BR ceill ():
31 .nf
32     _ISOC99_SOURCE || _POSIX_C_SOURCE >= 200112L
33         || /* Since glibc 2.19: */ _DEFAULT_SOURCE
34         || /* glibc <= 2.19: */ _BSD_SOURCE || _SVID_SOURCE
35 .fi
36 .SH DESCRIPTION
37 These functions return the smallest integral value that is not less than
38 .IR x .
40 For example,
41 .I ceil(0.5)
42 is 1.0, and
43 .I ceil(\-0.5)
44 is 0.0.
45 .SH RETURN VALUE
46 These functions return the ceiling of
47 .IR x .
50 .I x
51 is integral, +0, \-0, NaN, or infinite,
52 .I x
53 itself is returned.
54 .SH ERRORS
55 No errors occur.
56 POSIX.1-2001 documents a range error for overflows, but see NOTES.
57 .SH ATTRIBUTES
58 For an explanation of the terms used in this section, see
59 .BR attributes (7).
60 .TS
61 allbox;
62 lbx lb lb
63 l l l.
64 Interface       Attribute       Value
66 .na
67 .nh
68 .BR ceil (),
69 .BR ceilf (),
70 .BR ceill ()
71 T}      Thread safety   MT-Safe
72 .TE
73 .SH STANDARDS
74 C11, POSIX.1-2008.
75 .SH HISTORY
76 C99, POSIX.1-2001.
78 The variant returning
79 .I double
80 also conforms to
81 SVr4, 4.3BSD, C89.
82 .SH NOTES
83 SUSv2 and POSIX.1-2001 contain text about overflow (which might set
84 .I errno
86 .BR ERANGE ,
87 or raise an
88 .B FE_OVERFLOW
89 exception).
90 In practice, the result cannot overflow on any current machine,
91 so this error-handling stuff is just nonsense.
92 .\" The POSIX.1-2001 APPLICATION USAGE SECTION discusses this point.
93 (More precisely, overflow can happen only when the maximum value
94 of the exponent is smaller than the number of mantissa bits.
95 For the IEEE-754 standard 32-bit and 64-bit floating-point numbers
96 the maximum value of the exponent is 127 (respectively, 1023),
97 and the number of mantissa bits
98 including the implicit bit
99 is 24 (respectively, 53).)
101 The integral value returned by these functions may be too large
102 to store in an integer type
103 .RI ( int ,
104 .IR long ,
105 etc.).
106 To avoid an overflow, which will produce undefined results,
107 an application should perform a range check on the returned value
108 before assigning it to an integer type.
109 .SH SEE ALSO
110 .BR floor (3),
111 .BR lrint (3),
112 .BR nearbyint (3),
113 .BR rint (3),
114 .BR round (3),
115 .BR trunc (3)