Sign in
cobalt
/
cobalt
/
b95ea55ccebda33f820d043e4b4dc85c10d7584d
/
.
/
third_party
/
musl
/
src
/
unistd
/
readv.c
blob: e45cb484f09ae3d361824e160d75e3671fb5ae56 [
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
);
}