Sign in
mojo
/
mojo-tools
/
7d579155cc597aa3befcbfad66eef54bda06b57c
/
.
/
fusl
/
src
/
unistd
/
read.c
blob: 2b41055b4c26c9bede1b81d82337578c0d68395c [
file
] [
log
] [
blame
]
#include
<unistd.h>
#include
"syscall.h"
#include
"libc.h"
ssize_t
read
(
int
fd
,
void
*
buf
,
size_t
count
)
{
return
syscall_cp
(
SYS_read
,
fd
,
buf
,
count
);
}