Sign in
android
/
platform
/
external
/
musl
/
3da2b5cceae98f5098e62e7865fe6433c1e82775
/
.
/
src
/
unistd
/
write.c
blob: 8fd5bc5c261ced94e02e7fcb8bb5d26698055fc5 [
file
] [
log
] [
blame
]
#include
<unistd.h>
#include
"syscall.h"
ssize_t
write
(
int
fd
,
const
void
*
buf
,
size_t
count
)
{
return
syscall_cp
(
SYS_write
,
fd
,
buf
,
count
);
}