use libc-internal malloc for pthread_atfork
[musl] / src / unistd / pwrite.c
index ca37657..869b69f 100644 (file)
@@ -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);