Sign in
mojo
/
mojo-tools
/
7d579155cc597aa3befcbfad66eef54bda06b57c
/
.
/
fusl
/
src
/
linux
/
sendfile.c
blob: 105d69821420d7f3ce4c17fde1a47e243c2eb446 [
file
] [
log
] [
blame
]
#include
<sys/sendfile.h>
#include
"syscall.h"
#include
"libc.h"
ssize_t
sendfile
(
int
out_fd
,
int
in_fd
,
off_t
*
ofs
,
size_t
count
)
{
return
syscall
(
SYS_sendfile
,
out_fd
,
in_fd
,
ofs
,
count
);
}