Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
fenv
fesetexceptflag.c
pretty
plain
permalink
blame
history
•
8 lines
•
142 B
1
#include <fenv.h>
2
3
int fesetexceptflag(const fexcept_t *fp, int mask)
4
{
5
	feclearexcept(~*fp & mask);
6
	feraiseexcept(*fp & mask);
7
	return 0;
8
}