1 #include <sys/socket.h> 2 3 ssize_t recv(int fd, void *buf, size_t len, int flags) 4 { 5 return recvfrom(fd, buf, len, flags, 0, 0); 6 } 7