blob: 4bf16ca2dafe3d965d133afe0a1994773922d127 [file] [log] [blame]
#include <sys/socket.h>
#include <stddef.h>
ssize_t send(int fd, const void* buf, size_t len, int flags) {
return sendto(fd, buf, len, flags, NULL, 0);
}