acos.s fix: use the formula acos(x) = atan2(sqrt(1-x),sqrt(1+x))
[musl] / src / network / getsockname.c
1 #include <sys/socket.h>
2 #include "syscall.h"
3
4 int getsockname(int fd, struct sockaddr *addr, socklen_t *len)
5 {
6         return socketcall(getsockname, fd, addr, len, 0, 0, 0);
7 }