Sign in
android
/
platform
/
external
/
musl
/
a04e2582a2599bd598170373baba0dc622038fad
/
.
/
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
);
}