prevent CNAME/PTR parsing from reading data past the response end
[musl] / src / unistd / preadv.c
index 46d9ece..890ab40 100644 (file)
@@ -2,12 +2,9 @@
 #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)
 {
        return syscall_cp(SYS_preadv, fd, iov, count,
                (long)(ofs), (long)(ofs>>32));
 }
-
-LFS64(preadv);