aboutsummaryrefslogtreecommitdiff
path: root/src/unistd/writev.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unistd/writev.c')
-rw-r--r--src/unistd/writev.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/unistd/writev.c b/src/unistd/writev.c
index 5a46c951..973db2ee 100644
--- a/src/unistd/writev.c
+++ b/src/unistd/writev.c
@@ -5,3 +5,11 @@ ssize_t writev(int fd, const struct iovec *iov, int count)
{
return syscall_cp(SYS_writev, fd, iov, count);
}
+
+
+#ifdef TEST
+int
+main(void) {
+ return 0;
+}
+#endif