Query: ceilf
OS: opensolaris
Section: 3m
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
ceil(3M) Mathematical Library Functions ceil(3M)NAMEceil, ceilf, ceill - ceiling value functionSYNOPSISc99 [ flag... ] file... -lm [ library... ] #include <math.h> double ceil(double x); float ceilf(float x); long double ceill(long double x);DESCRIPTIONThese functions compute the smallest integral value not less than x.RETURN VALUESUpon successful completion, the ceil(), ceilf(), and ceill() functions return the smallest integral value not less than x, expressed as a type double, float, or long double, respectively. If x is NaN, a NaN is returned. If x is +-0 or +-Inf, x is returned.USAGEThe integral value returned by these functions need not be expressible as an int or long int. The return value should be tested before assigning it to an integer type to avoid the undefined results of an integer overflow.ATTRIBUTESSee attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Standard | +-----------------------------+-----------------------------+ |MT-Level |MT-Safe | +-----------------------------+-----------------------------+SEE ALSOfeclearexcept(3M), fetestexcept(3M), floor(3M), isnan(3M), math.h(3HEAD), attributes(5), standards(5) SunOS 5.11 12 Jul 2006 ceil(3M)
Related Man Pages |
---|
ceilf(3) - centos |
ceill(3) - centos |
ceill(3p) - suse |
modf(3) - osf1 |
ceil(3) - minix |
Similar Topics in the Unix Linux Community |
---|
about undefined reference for 'sinf' |
math.h: float ceilf(float x) |