aboutsummaryrefslogtreecommitdiff
path: root/src/fenv/feholdexcept.c
blob: 574830f85f3884632744f6d75f276e10186b5fce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <fenv.h>

int feholdexcept(fenv_t *envp)
{
	fegetenv(envp);
	feclearexcept(FE_ALL_EXCEPT);
	return 0;
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif