summaryrefslogtreecommitdiff
path: root/src/fenv/feclearexcept.c
blob: 4e6e2fc551d3a2bb03d7d90ed0104234ebd430e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <fenv.h>
#include "_fenv.h"

int feclearexcept(int excepts)
{
	SIGNAL_SAFE(0);
	ASSERT_VALID_EXCEPTION_MASK(excepts);
	return excepts;
}

CHECK_1(int, 0, feclearexcept, int)

/*
The feclearexcept function clears the supported floating-point exceptions
represented by its argument.
*/

/*
STDC(199901)
LINK(m)
*/