tgmath.c 284 B

12345678910111213141516171819
  1. #if defined __STDC_VERSION__ && 199901L <= __STDC_VERSION__
  2. #include <tgmath.h>
  3. #include "test.h"
  4. void test_tgmath_h(void)
  5. {
  6. testing_header("tgmath.h");
  7. /* I'm not really sure how to test this accurately in C alone */
  8. testing_end();
  9. }
  10. #else
  11. void test_tgmath_h(void)
  12. {
  13. }
  14. #endif