acos.s fix: use the formula acos(x) = atan2(sqrt(1-x),sqrt(1+x))
[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 }