Sign in
mojo
/
mojo-tools
/
7d579155cc597aa3befcbfad66eef54bda06b57c
/
.
/
fusl
/
src
/
unistd
/
writev.c
blob: 8e93e62ab607a9585c96b154c3c7fa2b3eb05365 [
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
);
}