Sign in
mojo
/
mojo-tools
/
17e3b04429ce6ad836128e1ceffefd85493ec779
/
.
/
fusl
/
src
/
unistd
/
pread.c
blob: d888a2c7a1fc6a5271a6bbe934cc5ef619583870 [
file
] [
log
] [
blame
]
#include
<unistd.h>
#include
"syscall.h"
#include
"libc.h"
ssize_t
pread
(
int
fd
,
void
*
buf
,
size_t
size
,
off_t
ofs
)
{
return
syscall_cp
(
SYS_pread
,
fd
,
buf
,
size
,
__SYSCALL_LL_O
(
ofs
));
}
LFS64
(
pread
);