fenv.c 244 B

1234567891011121314151617181920
  1. #if defined __STDC_VERSION__ && 199901L <= __STDC_VERSION__
  2. #include <fenv.h>
  3. #include "test.h"
  4. void test_fenv_h(void)
  5. {
  6. fenv_t fenv;
  7. fexcept_t fexcept;
  8. testing_header("fenv.h");
  9. testing_end();
  10. }
  11. #else
  12. void test_fenv_h(void)
  13. {
  14. }
  15. #endif