Sign in
mojo
/
mojo-tools
/
6d10d6bbfecec30019b2fe5c06e28a809f0d9753
/
.
/
fusl
/
src
/
network
/
recv.c
blob: 8b6b05caa8fdac87315b4d0640e0f7aa02edfe8d [
file
] [
log
] [
blame
]
#include
<sys/socket.h>
ssize_t
recv
(
int
fd
,
void
*
buf
,
size_t
len
,
int
flags
)
{
return
recvfrom
(
fd
,
buf
,
len
,
flags
,
0
,
0
);
}