Sign in
cobalt
/
cobalt
/
d2bc3b69d823bbaf46d1c4355b23486a85a6d791
/
.
/
third_party
/
musl
/
src
/
unistd
/
writev.c
blob: ef300ddf81a2b107f28e96d448647b1d9463f368 [
file
] [
log
] [
blame
]
#include
<sys/uio.h>
#include
"syscall.h"
#include
"libc.h"
ssize_t
writev
(
int
fd
,
const
struct
iovec
*
iov
,
int
count
)
{
return
syscall_cp
(
SYS_writev
,
fd
,
iov
,
count
);
}