Sign in
mojo
/
mojo
/
2f64806b047b83f7c49e0525d8f3499d7be23e27
/
.
/
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
);
}