Sign in
cobalt
/
cobalt
/
286dd7840608e9cf78bc4a603ff2ec2ee39750c5
/
.
/
src
/
third_party
/
musl
/
src
/
unistd
/
pwrite.c
blob: 4bf3d7dfcdaa1171fab942005fee289a35cd59f8 [
file
] [
log
] [
blame
]
#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_PRW
(
ofs
));
}
LFS64
(
pwrite
);