summaryrefslogtreecommitdiff
path: root/src/unistd/pwrite.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unistd/pwrite.c')
-rw-r--r--src/unistd/pwrite.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/unistd/pwrite.c b/src/unistd/pwrite.c
index ca376576..869b69f0 100644
--- a/src/unistd/pwrite.c
+++ b/src/unistd/pwrite.c
@@ -5,5 +5,3 @@ ssize_t pwrite(int fd, const void *buf, size_t size, off_t ofs)
{
return syscall_cp(SYS_pwrite, fd, buf, size, __SYSCALL_LL_PRW(ofs));
}
-
-weak_alias(pwrite, pwrite64);