Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
musl
/
65c8be380431eebe4d70d130bd38563f8df9a7d7
/
.
/
src
/
unistd
/
writev.c
blob: 5a46c951af57c6bf8cba26ee84ca98e9952f2b51 [
file
] [
log
] [
blame
]
#include
<sys/uio.h>
#include
"syscall.h"
ssize_t
writev
(
int
fd
,
const
struct
iovec
*
iov
,
int
count
)
{
return
syscall_cp
(
SYS_writev
,
fd
,
iov
,
count
);
}