summaryrefslogtreecommitdiff
path: root/include/fcntl.h
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-06-04 08:03:56 -0400
committerRich Felker <dalias@aerifal.cx>2012-06-04 08:03:56 -0400
commit3b94daba711090f1936f59fae6f7cbcba963b29e (patch)
treef00ea56519214432ee3fd99a287272cf1a770233 /include/fcntl.h
parentbd45dc9446166186cfdd5bc89ba719afa9ee7d4c (diff)
downloadmusl-3b94daba711090f1936f59fae6f7cbcba963b29e.tar.gz
_GNU_SOURCE is supposed to imply _LARGEFILE64_SOURCE
this is ugly and stupid, but now that the *64 symbol names exist, a lot of broken GNU software detects them in configure, then either breaks during build due to missing off64_t definition, or attempts to compile without function declarations/prototypes. "fixing" it here is easier than telling everyone to add yet another feature test macro to their builds.
Diffstat (limited to 'include/fcntl.h')
-rw-r--r--include/fcntl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/fcntl.h b/include/fcntl.h
index 85f867b3..36fb24bc 100644
--- a/include/fcntl.h
+++ b/include/fcntl.h
@@ -99,7 +99,7 @@ int posix_fallocate(int, off_t, off_t);
int lockf(int, int, off_t);
#endif
-#ifdef _LARGEFILE64_SOURCE
+#if defined(_LARGEFILE64_SOURCE) || defined(_GNU_SOURCE)
#define open64 open
#define openat64 openat
#define creat64 creat