mirror of
https://github.com/openharmony/third_party_musl2.git
synced 2026-07-01 10:25:07 -04:00
a7a91cd947
isolate changes, keep orignal musl sources clean. Signed-off-by: Caoruihong <crh.cao@huawei.com> Change-Id: Id7f3a5109771f93d397e30febba36e09ddaf4f36
29 lines
449 B
C
29 lines
449 B
C
#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
|
|
|