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