You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
725 B

  1. diff -urN a/lib/file/fileIOPosix.c b/lib/file/fileIOPosix.c
  2. --- a/lib/file/fileIOPosix.c
  3. +++ b/lib/file/fileIOPosix.c
  4. @@ -206,10 +206,10 @@
  5. * the symbols (and anyone building XOPEN<700 gets nothing).
  6. */
  7. extern ssize_t preadv64(int fd, const struct iovec *iov, int iovcnt,
  8. - __off64_t offset) __attribute__ ((weak));
  9. + off64_t offset) __attribute__ ((weak));
  10. extern ssize_t pwritev64(int fd, const struct iovec *iov, int iovcnt,
  11. - __off64_t offset) __attribute__ ((weak));
  12. + off64_t offset) __attribute__ ((weak));
  13. #else
  14. #error "Large file support unavailable. Aborting."
  15. #endif