cnd_init.c 91 B

1234567
  1. #include <threads.h>
  2. int cnd_init(cnd_t *c)
  3. {
  4. *c = (cnd_t){ 0 };
  5. return thrd_success;
  6. }