summaryrefslogtreecommitdiffstats
path: root/usr/klibc/send.c
blob: a867dd1241aa0f01f754778a56a9037825c0a0ae (plain)
1
2
3
4
5
6
7
8
9
10
11
/*
 * 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);
}