fix error returns in gethostby*_r functions
[musl] / src / network / socketpair.c
1 #include <sys/socket.h>
2 #include "syscall.h"
3
4 int socketpair(int domain, int type, int protocol, int fd[2])
5 {
6         return socketcall(socketpair, domain, type, protocol, fd, 0, 0);
7 }