blob: bc96a1ff035b25b5b01e9757f31619d89ac00ce7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef _LIBM_FENV_H_
#define _LIBM_FENV_H_
#include_next <fenv.h>
PROTO_NORMAL(feclearexcept);
PROTO_STD_DEPRECATED(fedisableexcept);
PROTO_STD_DEPRECATED(feenableexcept);
PROTO_NORMAL(fegetenv);
PROTO_STD_DEPRECATED(fegetexcept);
PROTO_STD_DEPRECATED(fegetexceptflag);
PROTO_NORMAL(fegetround);
PROTO_NORMAL(feholdexcept);
PROTO_NORMAL(feraiseexcept);
PROTO_NORMAL(fesetenv);
PROTO_NORMAL(fesetexceptflag);
PROTO_NORMAL(fesetround);
PROTO_NORMAL(fetestexcept);
PROTO_NORMAL(feupdateenv);
#endif /* ! _LIBM_FENV_H_ */
|