Query: fesetround
OS: netbsd
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
FEGETROUND(3) BSD Library Functions Manual FEGETROUND(3)NAMEfegetround, fesetround -- floating-point rounding controlLIBRARYMath Library (libm, -lm)SYNOPSIS#include <fenv.h> #pragma STDC FENV_ACCESS ON int fegetround(void); int fesetround(int round);DESCRIPTIONThe fegetround() function determines the current floating-point rounding mode, and the fesetround() function sets the current rounding mode to round. The rounding mode is one of FE_TONEAREST, FE_DOWNWARD, FE_UPWARD, or FE_TOWARDZERO, as described in fenv(3).RETURN VALUESThe fegetround() routine returns the current rounding mode. The fesetround() function returns 0 on success and non-zero otherwise; however, the present implementation always succeeds.SEE ALSOfenv(3), fpgetround(3), fpsetround(3)STANDARDSThe fegetround() and fesetround() functions conform to ISO/IEC 9899:1999 (``ISO C99'').HISTORYThese routines first appeared in FreeBSD 5.3 and NetBSD 6.0. They supersede the non-standard fpgetround(3) and fpsetround(3) functions.BSDMay 8, 2004 BSD
Related Man Pages |
---|
fesetround(3m) - sunos |
fegetround(3) - mojave |
fesetround(3m) - opensolaris |
fegetround(3m) - sunos |
fesetround(3) - freebsd |
Similar Topics in the Unix Linux Community |
---|
Rounding off the value of Floating point value |