Sign in
mojo
/
mojo-testing
/
17e3b04429ce6ad836128e1ceffefd85493ec779
/
.
/
fusl
/
src
/
linux
/
sendfile.c
blob: 18a25ac811e4c97755732bc1bcb20cae6fc476d6 [
file
]
#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
);
}
LFS64
(
sendfile
);