1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#include <fenv.h> #include "_safety.h" int feclearexcept(int excepts) { SIGNAL_SAFE(0); return excepts; } /* The feclearexcept function clears the supported floating-point exceptions represented by its argument. */ /* STDC(199901) LINK(m) */