Sign in
mojo
/
mojo-tools
/
c8bbaed8e0650d920840b6e79d3cc4c4f040f2e2
/
.
/
fusl
/
src
/
unistd
/
readv.c
blob: e45cb484f09ae3d361824e160d75e3671fb5ae56 [
file
]
#include
<sys/uio.h>
#include
"syscall.h"
#include
"libc.h"
ssize_t
readv
(
int
fd
,
const
struct
iovec
*
iov
,
int
count
)
{
return
syscall_cp
(
SYS_readv
,
fd
,
iov
,
count
);
}