diff options
Diffstat (limited to 'src/unistd/preadv.c')
-rw-r--r-- | src/unistd/preadv.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/unistd/preadv.c b/src/unistd/preadv.c index 46d9ece7..8376d60f 100644 --- a/src/unistd/preadv.c +++ b/src/unistd/preadv.c @@ -2,7 +2,6 @@ #include <sys/uio.h> #include <unistd.h> #include "syscall.h" -#include "libc.h" ssize_t preadv(int fd, const struct iovec *iov, int count, off_t ofs) { @@ -10,4 +9,4 @@ ssize_t preadv(int fd, const struct iovec *iov, int count, off_t ofs) (long)(ofs), (long)(ofs>>32)); } -LFS64(preadv); +weak_alias(preadv, preadv64); |