blob: 496b4f9d396a7d6c265c0b2153277a1c033d7c5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#include <fenv.h>
#include "_safety.h"
int fegetexceptflag(fexcept_t *flagp, int excepts)
{
SIGNAL_SAFE(0);
(void)flagp; (void)excepts;
return 0;
}
/*
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.
*/
/*
STDC(199901)
LINK(m)
*/
|