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

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

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

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