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