repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
update netinet/udp.h for linux v4.18
[musl.git]
/
src
/
unistd
/
pwritev.c
blob
f5a612c486e132f41ab73670c4c7e24c28f0f27a
1
#define _BSD_SOURCE
2
#include <sys/uio.h>
3
#include <unistd.h>
4
#include
"syscall.h"
5
6
ssize_t
pwritev
(
int
fd
,
const struct
iovec
*
iov
,
int
count
,
off_t ofs
)
7
{
8
return
syscall_cp
(
SYS_pwritev
,
fd
,
iov
,
count
,
9
(
long
)(
ofs
), (
long
)(
ofs
>>
32
));
10
}
11
12
weak_alias
(
pwritev
,
pwritev64
);