]> git.proxmox.com Git - wasi-libc.git/blob - libc-top-half/musl/src/thread/cnd_init.c
bump version to 0.0~git20240411.9e8c542-3~bpo12+pve1
[wasi-libc.git] / libc-top-half / musl / src / thread / cnd_init.c
1 #include <threads.h>
2
3 int cnd_init(cnd_t *c)
4 {
5 *c = (cnd_t){ 0 };
6 return thrd_success;
7 }