mirror of git://git.musl-libc.org/musl
9 lines
195 B
C
9 lines
195 B
C
|
#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);
|
||
|
}
|