diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-09-09 16:33:47 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-09-09 16:33:47 -0400 |
commit | 2416c63b81f7f79ea781725cf1117c191775c699 (patch) | |
tree | 7374b1664025673e26964c4a2fa44b188bb0bd66 /src/unistd | |
parent | ea544bfe808ef74c6d1727312069c12dd1c5c150 (diff) | |
download | musl-2416c63b81f7f79ea781725cf1117c191775c699.tar.gz musl-2416c63b81f7f79ea781725cf1117c191775c699.tar.xz musl-2416c63b81f7f79ea781725cf1117c191775c699.zip |
fix up lfs64 junk for preadv/pwritev
Diffstat (limited to 'src/unistd')
-rw-r--r-- | src/unistd/preadv.c | 2 | ||||
-rw-r--r-- | src/unistd/pwritev.c | 2 |
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" |