Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
musl
/
7597fc25a2743d49500926a286da71f8e033936c
/
.
/
src
/
linux
/
sendfile.c
blob: d63f4197bb8b8db64470e02b4b157d05058feaef [
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
);
}
LFS64
(
sendfile
);