remove leftover cp_sp cruft from cancellation code, fix small bug
[musl] / src / thread / pthread_condattr_init.c
1 #include "pthread_impl.h"
2
3 int pthread_condattr_init(pthread_condattr_t *a)
4 {
5         memset(a, 0, sizeof *a);
6         return 0;
7 }