1 #define _GNU_SOURCE
2 #include <sys/socket.h>
3 
accept(int fd,struct sockaddr * restrict addr,socklen_t * restrict len)4 int accept(int fd, struct sockaddr* restrict addr, socklen_t* restrict len) {
5     return accept4(fd, addr, len, 0);
6 }
7