reorganize pthread data structures and move the definitions to alltypes.h
[musl] / src / thread / pthread_attr_setdetachstate.c
1 #include "pthread_impl.h"
2
3 int pthread_attr_setdetachstate(pthread_attr_t *a, int state)
4 {
5         a->_a_detach = state;
6         return 0;
7 }