blob: 1df268d5a76f2b65c1a0fa4f136770665326375b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#define _GNU_SOURCE
#include <sys/uio.h>
#include <unistd.h>
#include "syscall.h"
#include "libc.h"
ssize_t pwritev(int fd, const struct iovec *iov, int count, off_t ofs)
{
return syscall_cp(SYS_pwritev, fd, iov, count,
(long)(ofs), (long)(ofs>>32));
}
LFS64(pwritev);
|