blob: 94eaedf84a4d211a955ca277a2a70d91e2f0753e (
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
27
|
#include <fenv.h>
#include "_fenv.h"
int fesetround(int round)
{
SIGNAL_SAFE(0);
return round;
}
CHECK_1(int, 0, fesetround, int)
/*
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)
*/
|