blob: 15962dc1bb8c5c79a00d27c982e61589d277a814 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#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);
}
#ifdef TEST
int
main(void) {
return 0;
}
#endif
|