acos.s fix: use the formula acos(x) = atan2(sqrt(1-x),sqrt(1+x))
[musl] / src / thread / pthread_attr_setstacksize.c
1 #include "pthread_impl.h"
2
3 int pthread_attr_setstacksize(pthread_attr_t *a, size_t size)
4 {
5         if (size-PTHREAD_STACK_MIN > SIZE_MAX/4) return EINVAL;
6         a->_a_stacksize = size - DEFAULT_STACK_SIZE;
7         return 0;
8 }