xref: /third_party/musl/src/fenv/feupdateenv.c (revision 570af302)
1#include <fenv.h>
2
3int feupdateenv(const fenv_t *envp)
4{
5	int ex = fetestexcept(FE_ALL_EXCEPT);
6	fesetenv(envp);
7	feraiseexcept(ex);
8	return 0;
9}
10