aboutsummaryrefslogtreecommitdiff
path: root/src/unistd/readv.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unistd/readv.c')
-rw-r--r--src/unistd/readv.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/unistd/readv.c b/src/unistd/readv.c
index 91e6de81..15962dc1 100644
--- a/src/unistd/readv.c
+++ b/src/unistd/readv.c
@@ -5,3 +5,11 @@ 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