Sign in
mojo
/
mojo-tools
/
7d579155cc597aa3befcbfad66eef54bda06b57c
/
.
/
fusl
/
src
/
unistd
/
readv.c
blob: adad6a81f3879f265e386354fd36226b9dd9d888 [
file
] [
log
] [
blame
]
#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
);
}