blob: 9f555ddeff7e8b07281ece951451df6b4ba619a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include <fenv.h>
int feraiseexcept(int excepts)
{
return excepts;
}
/*d
The feraiseexcept function raises the supported floating-point exceptions
represented by its argument. 178) The order in which these floating-point exceptions are
raised is unspecified, except as stated in F.7.6. Whether the feraiseexcept function
additionally raises the ‘‘inexact’’ floating-point exception whenever it raises the
‘‘overflow’’ or ‘‘underflow’’ floating-point exception is implementation-defined.
d*/
/*
STDC(199901)
LINK(m)
*/
|