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
wireup linux/name_to_handle_at and name_to_handle_at syscalls
[musl.git]
/
src
/
linux
/
vmsplice.c
blob
ebf13ee44edfbefa1cc5bc2cb9ead200f4781d3b
1
#define _GNU_SOURCE
2
#include <fcntl.h>
3
#include
"syscall.h"
4
5
ssize_t
vmsplice
(
int
fd
,
const struct
iovec
*
iov
,
size_t
cnt
,
unsigned
flags
)
6
{
7
return
syscall
(
SYS_vmsplice
,
fd
,
iov
,
cnt
,
flags
);
8
}