]> git.proxmox.com Git - wasi-libc.git/blob - libc-top-half/musl/src/fenv/feholdexcept.c
WASI libc prototype implementation.
[wasi-libc.git] / libc-top-half / musl / src / fenv / feholdexcept.c
1 #include <fenv.h>
2
3 int feholdexcept(fenv_t *envp)
4 {
5 fegetenv(envp);
6 feclearexcept(FE_ALL_EXCEPT);
7 return 0;
8 }