chiark / gitweb /
[PATCH] tweak udev-test.pl to report '0' errors if that's what happened.
[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 }