blob: 45e4bf989bfad53b74500ed24c9047722244e6f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include <fenv.h>
int fegetexceptflag(fexcept_t *flagp, int excepts)
{
return excepts;
}
/*d
The fegetexceptflag function stores an implementation-defined representation of
the states of the floating-point status flags indicated by the argument excepts in the
object pointed to by the argument flagp.
d*/
/*
STDC(199901)
LINK(m)
*/
|