summaryrefslogtreecommitdiff
path: root/src/unistd/readv.c
blob: 9b87728e08bdb88bed07c13d5cd4453441edb861 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include <sys/uio.h>
#include "syscall.h"
#include "libc.h"

ssize_t readv(int fd, const struct iovec *iov, int count)
{
	ssize_t r;
	CANCELPT_BEGIN;
	r = syscall(SYS_readv, fd, iov, count);
	CANCELPT_END;
	return r;
}