threads.c 267 B

12345678910111213141516171819
  1. #if defined __STDC_VERSION__ && 201112L <= __STDC_VERSION__ && ! defined __STDC_NO_THREADS__
  2. #include <threads.h>
  3. #include "test.h"
  4. void test_threads_h(void)
  5. {
  6. testing_header("threads.h");
  7. /* TODO */
  8. testing_end();
  9. }
  10. #else
  11. void test_threads_h(void)
  12. {
  13. }
  14. #endif