musl-tcc/src/thread/cnd_init.c
2022-03-20 16:48:53 +08:00

8 lines
91 B
C

#include <threads.h>
int cnd_init(cnd_t *c)
{
*c = (cnd_t){ 0 };
return thrd_success;
}