Sign in
cobalt
/
cobalt
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
musl
/
src
/
linux
/
vmsplice.c
blob: ebf13ee44edfbefa1cc5bc2cb9ead200f4781d3b [
file
] [
log
] [
blame
]
#define
_GNU_SOURCE
#include
<fcntl.h>
#include
"syscall.h"
ssize_t
vmsplice
(
int
fd
,
const
struct
iovec
*
iov
,
size_t
cnt
,
unsigned
flags
)
{
return
syscall
(
SYS_vmsplice
,
fd
,
iov
,
cnt
,
flags
);
}