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