Sign in
cobalt
/
cobalt
/
b95ea55ccebda33f820d043e4b4dc85c10d7584d
/
.
/
third_party
/
musl
/
src
/
unistd
/
write.c
blob: e2f7e1f219ad3dedcebe4f1e1362848af72ad5dd [
file
] [
log
] [
blame
]
#include
<unistd.h>
#include
"syscall.h"
#include
"libc.h"
ssize_t
write
(
int
fd
,
const
void
*
buf
,
size_t
count
)
{
return
syscall_cp
(
SYS_write
,
fd
,
buf
,
count
);
}