Sign in
android
/
platform
/
external
/
musl
/
3ea3fcf78a5532e118856846df8adbf3f60ef716
/
.
/
src
/
linux
/
sendfile.c
blob: fc1577d34330fcf10a7efdfa79b8b03bb6eb080b [
file
] [
log
] [
blame
]
#include
<sys/sendfile.h>
#include
"syscall.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
);
}