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