summaryrefslogtreecommitdiff
path: root/src/unistd/pread.c
blob: 0a0450130e892329c7d8f7c1677de3f4f094aee8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <unistd.h>
#include "syscall.h"
#include "libc.h"

ssize_t pread(int fd, void *buf, size_t size, off_t ofs)
{
	ssize_t r;
	CANCELPT_BEGIN;
	r = syscall(SYS_pread, fd, buf, size, __SYSCALL_LL(ofs));
	CANCELPT_END;
	return r;
}

LFS64(pread);