musl-tcc/src/fenv/feupdateenv.c

10 lines
146 B
C
Raw Normal View History

2022-04-06 00:36:42 +00:00
#include <fenv.h>
int feupdateenv(const fenv_t *envp)
{
int ex = fetestexcept(FE_ALL_EXCEPT);
fesetenv(envp);
feraiseexcept(ex);
return 0;
}