Sign in
kernel
/
pub
/
scm
/
linux
/
kernel
/
git
/
bwh
/
klibc
/
201dabf78546ca712d3541670a5d898dc199854e
/
.
/
usr
/
klibc
/
recv.c
blob: 0baa00a029dd9a58b96c87c2d2938ae84bca14f9 [
file
] [
log
] [
blame
]
/*
* recv.c
*/
#include
<stddef.h>
#include
<sys/socket.h>
int
recv
(
int
s
,
void
*
buf
,
size_t
len
,
unsigned
int
flags
)
{
return
recvfrom
(
s
,
buf
,
len
,
flags
,
NULL
,
0
);
}