fix up lfs64 junk for preadv/pwritev
authorRich Felker <dalias@aerifal.cx>
Sun, 9 Sep 2012 20:33:47 +0000 (16:33 -0400)
committerRich Felker <dalias@aerifal.cx>
Sun, 9 Sep 2012 20:33:47 +0000 (16:33 -0400)
include/sys/uio.h
src/unistd/preadv.c
src/unistd/pwritev.c

index 60c5c2fed90c3b7d4250c47ecdb6427c00eaa2d7..09b6ab9e007a8d895e840eccd058ee4c2934bc5e 100644 (file)
@@ -27,6 +27,11 @@ ssize_t writev (int, const struct iovec *, int);
 #if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
 ssize_t preadv (int, const struct iovec *, int, off_t);
 ssize_t pwritev (int, const struct iovec *, int, off_t);
+#if defined(_LARGEFILE64_SOURCE) || defined(_GNU_SOURCE)
+#define preadv64 preadv
+#define pwritev64 pwritev
+#define off64_t off_t
+#endif
 #endif
 
 #ifdef _GNU_SOURCE
index 371e46f8fc62806722d4ee64706058f71d67b1d5..46d9ece7bbeeba5586b4fc9c1e95b3a8d36e8e77 100644 (file)
@@ -1,4 +1,4 @@
-#define _GNU_SOURCE
+#define _BSD_SOURCE
 #include <sys/uio.h>
 #include <unistd.h>
 #include "syscall.h"
index 1df268d5a76f2b65c1a0fa4f136770665326375b..aec5d3235a0f45d4bf5b12c803afb67033a9e9b0 100644 (file)
@@ -1,4 +1,4 @@
-#define _GNU_SOURCE
+#define _BSD_SOURCE
 #include <sys/uio.h>
 #include <unistd.h>
 #include "syscall.h"