Sign in
mojo
/
mojo-tools
/
c8bbaed8e0650d920840b6e79d3cc4c4f040f2e2
/
.
/
fusl
/
src
/
unistd
/
pwrite.c
blob: bbe4c345dcbe4a5ca5eb15db0358d331301cb665 [
file
]
#include
<unistd.h>
#include
"syscall.h"
#include
"libc.h"
ssize_t
pwrite
(
int
fd
,
const
void
*
buf
,
size_t
size
,
off_t
ofs
)
{
return
syscall_cp
(
SYS_pwrite
,
fd
,
buf
,
size
,
__SYSCALL_LL_O
(
ofs
));
}
LFS64
(
pwrite
);