send.c raw

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