summaryrefslogtreecommitdiff
path: root/src/unistd/pwritev.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unistd/pwritev.c')
-rw-r--r--src/unistd/pwritev.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/unistd/pwritev.c b/src/unistd/pwritev.c
index aec5d323..f5a612c4 100644
--- a/src/unistd/pwritev.c
+++ b/src/unistd/pwritev.c
@@ -2,7 +2,6 @@
#include <sys/uio.h>
#include <unistd.h>
#include "syscall.h"
-#include "libc.h"
ssize_t pwritev(int fd, const struct iovec *iov, int count, off_t ofs)
{
@@ -10,4 +9,4 @@ ssize_t pwritev(int fd, const struct iovec *iov, int count, off_t ofs)
(long)(ofs), (long)(ofs>>32));
}
-LFS64(pwritev);
+weak_alias(pwritev, pwritev64);