blob: 3997adcf1c7464421d790636d1b746b0002f759b (
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
|
#include <fenv.h>
#include "_safety.h"
int fesetround(int round)
{
SIGNAL_SAFE(0);
return round;
}
/*
The fesetround function establishes the rounding direction represented by its
argument round. If the argument is not equal to the value of a rounding direction macro,
the rounding direction is not changed.
*/
/*
The fesetround function returns a zero value if and only if the argument is equal to a
rounding direction macro (that is, if and only if the requested rounding direction was
established).
r*/
/*
STDC(199901)
LINK(m)
*/
|