repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix and overhaul dlsym depedency order, always record direct deps
[musl.git]
/
src
/
unistd
/
pread.c
blob
5681b045d6b96cf76a25af80449af5103c392592
1
#include <unistd.h>
2
#include
"syscall.h"
3
4
ssize_t
pread
(
int
fd
,
void
*
buf
,
size_t
size
,
off_t ofs
)
5
{
6
return
syscall_cp
(
SYS_pread
,
fd
,
buf
,
size
,
__SYSCALL_LL_PRW
(
ofs
));
7
}
8
9
weak_alias
(
pread
,
pread64
);