res_send: use a temp buffer if caller's buffer is under 512 bytes
[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 }