feclearexcept
From cppreference.com
| Defined in header <<fenv.h>>
|
||
| int feclearexcept( int excepts ); |
(since C99) | |
Attempts to clear the floating-point exceptions that are listed in the bitmask argument excepts, which is a bitwise OR of the floating point exception macros.
Contents |
[edit] Parameters
| excepts | - | bitmask listing the exception flags to clear |
[edit] Return value
0 if all indicated exceptions were successfully cleared or if excepts is zero. Returns a non-zero value on error.
[edit] Example
| This section is incomplete Reason: no example |
[edit] See also
| (C99) |
determines which of the specified floating-point status flags are set (function) |
| C++ documentation for feclearexcept
| |