acos.s fix: use the formula acos(x) = atan2(sqrt(1-x),sqrt(1+x))
[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         if (state > 1U) return EINVAL;
6         a->_a_detach = state;
7         return 0;
8 }