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