]> git.proxmox.com Git - wasi-libc.git/blob - libc-top-half/musl/src/thread/pthread_barrierattr_init.c
bump version to 0.0~git20230821.ec4566b-1~bpo12+pve1
[wasi-libc.git] / libc-top-half / musl / src / thread / pthread_barrierattr_init.c
1 #include "pthread_impl.h"
2
3 int pthread_barrierattr_init(pthread_barrierattr_t *a)
4 {
5 *a = (pthread_barrierattr_t){0};
6 return 0;
7 }