musl-tcc/src/unistd/readv.c

8 lines
152 B
C
Raw Permalink Normal View History

2022-03-20 08:48:53 +00:00
#include <sys/uio.h>
#include "syscall.h"
ssize_t readv(int fd, const struct iovec *iov, int count)
{
return syscall_cp(SYS_readv, fd, iov, count);
}