repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix setgroups behavior in multithreaded process
[musl.git]
/
src
/
linux
/
sendfile.c
blob
9afe6dd61c203122e671ee0e5743d4b022834485
1
#include <sys/sendfile.h>
2
#include
"syscall.h"
3
4
ssize_t
sendfile
(
int
out_fd
,
int
in_fd
,
off_t
*
ofs
,
size_t
count
)
5
{
6
return
syscall
(
SYS_sendfile
,
out_fd
,
in_fd
,
ofs
,
count
);
7
}
8
9
weak_alias
(
sendfile
,
sendfile64
);