syscall overhaul part two - unify public and internal syscall interface
[musl] / src / unistd / pread.c
1 #include <unistd.h>
2 #include "syscall.h"
3 #include "libc.h"
4
5 ssize_t pread(int fd, void *buf, size_t size, off_t ofs)
6 {
7         ssize_t r;
8         CANCELPT_BEGIN;
9         r = syscall(__NR_pread, fd, buf, size, __SYSCALL_LL(ofs));
10         CANCELPT_END;
11         return r;
12 }
13
14 LFS64(pread);