chiark / gitweb /
[PATCH] sync klibc with release 0.95
[elogind.git] / klibc / klibc / send.c
1 /*
2  * send.c
3  */
4
5 #include <stddef.h>
6 #include <sys/socket.h>
7
8 int send(int s, const void *buf, size_t len, unsigned int flags)
9 {
10   return sendto(s, buf, len, flags, NULL, 0);
11 }