logo

oasis-root

Compiled tree of Oasis Linux based on own branch at <https://hacktivis.me/git/oasis/> git clone https://anongit.hacktivis.me/git/oasis-root.git

fenv.h (449B)


  1. #ifndef _FENV_H
  2. #define _FENV_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #include <bits/fenv.h>
  7. int feclearexcept(int);
  8. int fegetexceptflag(fexcept_t *, int);
  9. int feraiseexcept(int);
  10. int fesetexceptflag(const fexcept_t *, int);
  11. int fetestexcept(int);
  12. int fegetround(void);
  13. int fesetround(int);
  14. int fegetenv(fenv_t *);
  15. int feholdexcept(fenv_t *);
  16. int fesetenv(const fenv_t *);
  17. int feupdateenv(const fenv_t *);
  18. #ifdef __cplusplus
  19. }
  20. #endif
  21. #endif