fix x86_64 user.h (previously was just a copy of i386)
[musl] / src / network / getsockopt.c
1 #include <sys/socket.h>
2 #include "syscall.h"
3
4 int getsockopt(int fd, int level, int optname, void *optval, socklen_t *optlen)
5 {
6         return socketcall(getsockopt, fd, level, optname, optval, optlen, 0);
7 }