summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-09-09 16:33:47 -0400
committerRich Felker <dalias@aerifal.cx>2012-09-09 16:33:47 -0400
commit2416c63b81f7f79ea781725cf1117c191775c699 (patch)
tree7374b1664025673e26964c4a2fa44b188bb0bd66 /src
parentea544bfe808ef74c6d1727312069c12dd1c5c150 (diff)
downloadmusl-2416c63b81f7f79ea781725cf1117c191775c699.tar.gz
fix up lfs64 junk for preadv/pwritev
Diffstat (limited to 'src')
-rw-r--r--src/unistd/preadv.c2
-rw-r--r--src/unistd/pwritev.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/unistd/preadv.c b/src/unistd/preadv.c
index 371e46f8..46d9ece7 100644
--- a/src/unistd/preadv.c
+++ b/src/unistd/preadv.c
@@ -1,4 +1,4 @@
-#define _GNU_SOURCE
+#define _BSD_SOURCE
#include <sys/uio.h>
#include <unistd.h>
#include "syscall.h"
diff --git a/src/unistd/pwritev.c b/src/unistd/pwritev.c
index 1df268d5..aec5d323 100644
--- a/src/unistd/pwritev.c
+++ b/src/unistd/pwritev.c
@@ -1,4 +1,4 @@
-#define _GNU_SOURCE
+#define _BSD_SOURCE
#include <sys/uio.h>
#include <unistd.h>
#include "syscall.h"