summaryrefslogtreecommitdiff
path: root/src/unistd/pwritev.c
blob: becf9debfc3c86d9037584c070ea48e6c71d92a5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#define _BSD_SOURCE
#include <sys/uio.h>
#include <unistd.h>
#include "syscall.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));
}