add *64 junk for sys/*.h headers
authorRich Felker <dalias@aerifal.cx>
Fri, 4 May 2012 04:31:25 +0000 (00:31 -0400)
committerRich Felker <dalias@aerifal.cx>
Fri, 4 May 2012 04:31:25 +0000 (00:31 -0400)
include/sys/mman.h
include/sys/resource.h
include/sys/sendfile.h
include/sys/stat.h
include/sys/statfs.h
include/sys/statvfs.h
include/sys/types.h

index 4f87163..a48c2b4 100644 (file)
@@ -33,6 +33,11 @@ int madvise (void *, size_t, int);
 int shm_open (const char *, int, mode_t);
 int shm_unlink (const char *);
 
 int shm_open (const char *, int, mode_t);
 int shm_unlink (const char *);
 
+#ifdef _LARGEFILE64_SOURCE
+#define mmap64 mmap
+#define off64_t off_t
+#endif
+
 #ifdef __cplusplus
 }
 #endif
 #ifdef __cplusplus
 }
 #endif
index cb39923..4baceb3 100644 (file)
@@ -87,6 +87,12 @@ int prlimit(pid_t, int, const struct rlimit *, struct rlimit *);
 
 #define RLIM_NLIMITS RLIMIT_NLIMITS
 
 
 #define RLIM_NLIMITS RLIMIT_NLIMITS
 
+#ifdef _LARGEFILE64_SOURCE
+#define getrlimit64 getrlimit
+#define setrlimit64 setrlimit
+#define rlimit64 rlimit
+#define rlim64_t rlim_t
+#endif
 
 #ifdef __cplusplus
 }
 
 #ifdef __cplusplus
 }
index f0c6ed0..ba9aa54 100644 (file)
@@ -9,6 +9,11 @@ extern "C" {
 
 ssize_t sendfile(int, int, off_t *, size_t);
 
 
 ssize_t sendfile(int, int, off_t *, size_t);
 
+#ifdef _LARGEFILE64_SOURCE
+#define sendfile64 sendfile
+#define off64_t off_t
+#endif
+
 #ifdef __cplusplus
 }
 #endif
 #ifdef __cplusplus
 }
 #endif
index 5e339d5..5d50ae7 100644 (file)
@@ -96,6 +96,17 @@ int lchmod(const char *, mode_t);
 #define S_IEXEC S_IXUSR
 #endif
 
 #define S_IEXEC S_IXUSR
 #endif
 
+#ifdef _LARGEFILE64_SOURCE
+#define stat64 stat
+#define fstat64 fstat
+#define lstat64 lstat
+#define fstatat64 fstatat
+#define blksize64_t blksize_t
+#define blkcnt64_t blkcnt_t
+#define ino64_t ino_t
+#define off64_t off_t
+#endif
+
 #ifdef __cplusplus
 }
 #endif
 #ifdef __cplusplus
 }
 #endif
index f5239d8..c1cbe9e 100644 (file)
@@ -16,6 +16,13 @@ typedef struct {
 int statfs (const char *, struct statfs *);
 int fstatfs (int, struct statfs *);
 
 int statfs (const char *, struct statfs *);
 int fstatfs (int, struct statfs *);
 
+#ifdef _LARGEFILE64_SOURCE
+#define statfs64 statfs
+#define fstatfs64 fstatfs
+#define fsblkcnt64_t fsblkcnt_t
+#define fsfilcnt64_t fsfilcnt_t
+#endif
+
 #ifdef __cplusplus
 }
 #endif
 #ifdef __cplusplus
 }
 #endif
index b9f72b7..3eaa2dc 100644 (file)
@@ -41,6 +41,13 @@ int fstatvfs (int, struct statvfs *);
 #define ST_NOATIME     1024
 #define ST_NODIRATIME  2048
 
 #define ST_NOATIME     1024
 #define ST_NODIRATIME  2048
 
+#ifdef _LARGEFILE64_SOURCE
+#define statvfs64 statvfs
+#define fstatvfs64 fstatvfs
+#define fsblkcnt64_t fsblkcnt_t
+#define fsfilcnt64_t fsfilcnt_t
+#endif
+
 #ifdef __cplusplus
 }
 #endif
 #ifdef __cplusplus
 }
 #endif
index 18433f8..b9b65f6 100644 (file)
@@ -72,6 +72,15 @@ typedef long register_t;
 #include <sys/sysmacros.h>
 #endif
 
 #include <sys/sysmacros.h>
 #endif
 
+#ifdef _LARGEFILE64_SOURCE
+#define blksize64_t blksize_t
+#define blkcnt64_t blkcnt_t
+#define fsblkcnt64_t fsblkcnt_t
+#define fsfilcnt64_t fsfilcnt_t
+#define ino64_t ino_t
+#define off64_t off_t
+#endif
+
 #ifdef __cplusplus
 }
 #endif
 #ifdef __cplusplus
 }
 #endif