blob: 39855a99867002eac24dc3f4e8940708cf64173a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#if 0
#include <fenv.h>
int fegetround(void)
{
return 0;
}
/*d
The fegetround function gets the current rounding direction.
d*/
/*r
The fegetround function returns the value of the rounding direction macro
representing the current rounding direction or a negative value if there is no such
rounding direction macro or the current rounding direction is not determinable.
r*/
/*
STDC(199901)
LINK(m)
*/
#endif
|