xref: /third_party/musl/src/network/send.c (revision 570af302)
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}
7