mirror of https://git.musl-libc.org/git/musl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
449 B
29 lines
449 B
|
15 years ago
|
#ifndef _FENV_H
|
||
|
|
#define _FENV_H
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#include <bits/fenv.h>
|
||
|
|
|
||
|
|
int feclearexcept(int);
|
||
|
|
int fegetexceptflag(fexcept_t *, int);
|
||
|
|
int feraiseexcept(int);
|
||
|
|
int fesetexceptflag(const fexcept_t *, int);
|
||
|
|
int fetestexcept(int);
|
||
|
|
|
||
|
|
int fegetround(void);
|
||
|
|
int fesetround(int);
|
||
|
|
|
||
|
|
int fegetenv(fenv_t *);
|
||
|
|
int feholdexcept(fenv_t *);
|
||
|
|
int fesetenv(const fenv_t *);
|
||
|
|
int feupdateenv(const fenv_t *);
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
#endif
|
||
|
|
|