diff options
Diffstat (limited to 'include/fcntl.h')
-rw-r--r-- | include/fcntl.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/fcntl.h b/include/fcntl.h index 24678b21..63f1bebc 100644 --- a/include/fcntl.h +++ b/include/fcntl.h @@ -88,6 +88,16 @@ int posix_fallocate(int, off_t, off_t); #define FNDELAY O_NDELAY #endif +#ifdef _LARGEFILE64_SOURCE +#define open64 open +#define openat64 openat +#define creat64 creat +#define lockf64 lockf +#define posix_fadvise64 posix_fadvise +#define posix_fallocate64 posix_fallocate +#define off64_t off_t +#endif + #ifdef __cplusplus } #endif |