Sign in
mojo
/
mojo-tools
/
7d579155cc597aa3befcbfad66eef54bda06b57c
/
.
/
fusl
/
src
/
linux
/
vmsplice.c
blob: e6354779646c70ff51049804372ca638c7052070 [
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
);
}