arudradey's picture
Upload folder using huggingface_hub
00df61d verified
Raw
History Blame Contribute Delete
91 Bytes
#include <threads.h>
int cnd_init(cnd_t *c)
{
*c = (cnd_t){ 0 };
return thrd_success;
}