c11threads.c 87 B

123456
  1. #include <threads.h>
  2. int main() {
  3. mtx_t mutex;
  4. mtx_init(&mutex, mtx_plain);
  5. }