mirror of git://git.musl-libc.org/musl
fix feholdexcept -- it needs to clear exceptions after saving environment
This commit is contained in:
parent
19b1a8453e
commit
0b52bf5c78
|
@ -3,5 +3,6 @@
|
|||
int feholdexcept(fenv_t *envp)
|
||||
{
|
||||
fegetenv(envp);
|
||||
feclearexcept(FE_ALL_EXCEPT);
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue