mirror of git://git.musl-libc.org/musl
9 lines
142 B
C
9 lines
142 B
C
|
#include <fenv.h>
|
||
|
|
||
|
int fesetexceptflag(const fexcept_t *fp, int mask)
|
||
|
{
|
||
|
feclearexcept(~*fp & mask);
|
||
|
feraiseexcept(*fp & mask);
|
||
|
return 0;
|
||
|
}
|