fedisableexcept
int fedisableexcept(int);
PROTO_STD_DEPRECATED(fedisableexcept);
fedisableexcept(FE_ALL_EXCEPT);
fedisableexcept(FE_ALL_EXCEPT);
fedisableexcept(FE_DIVBYZERO);
assert((fedisableexcept(FE_OVERFLOW) & ALL_STD_EXCEPT) ==
assert((fedisableexcept(FE_ALL_EXCEPT) & ALL_STD_EXCEPT) ==
fedisableexcept(FE_ALL_EXCEPT);
ATF_CHECK_EQ((FE_INVALID | FE_OVERFLOW | FE_UNDERFLOW), (fedisableexcept(FE_OVERFLOW) & ALL_STD_EXCEPT));
ATF_CHECK_EQ((FE_INVALID | FE_UNDERFLOW), (fedisableexcept(FE_ALL_EXCEPT) & ALL_STD_EXCEPT));