stdnoreturn.c 283 B

12345678910111213141516171819
  1. #if defined __STDC_VERSION__ && 201112L <= __STDC_VERSION__
  2. #include <stdnoreturn.h>
  3. #include "test.h"
  4. void test_stdnoreturn_h(void)
  5. {
  6. testing_header("stdnoreturn.h");
  7. /* tested by the fact that this compiles */
  8. testing_end();
  9. }
  10. #else
  11. void test_stdnoreturn_h(void)
  12. {
  13. }
  14. #endif