projects
/
oweals
/
musl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
add mips n32 port (ILP32 ABI for mips64)
[oweals/musl.git]
/
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
return syscall_cp(SYS_pread, fd, buf, size, __SYSCALL_LL_O(ofs));
8
}
9
10
LFS64(pread);