a9e0a72dbe5565628b581ca5916513b701b515f8
[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 }