blob: d4713bd34771f89188adc51cfdd135b2a0bee076 [file] [log] [blame]
#include <sys/socket.h>
#include "syscall.h"
int getsockopt(int fd,
int level,
int optname,
void* restrict optval,
socklen_t* restrict optlen) {
return socketcall(getsockopt, fd, level, optname, optval, optlen, 0);
}