Browse Source

add *64 junk for sys/*.h headers

Rich Felker 13 years ago
parent
commit
f0b85fd926
7 changed files with 50 additions and 0 deletions
  1. 5 0
      include/sys/mman.h
  2. 6 0
      include/sys/resource.h
  3. 5 0
      include/sys/sendfile.h
  4. 11 0
      include/sys/stat.h
  5. 7 0
      include/sys/statfs.h
  6. 7 0
      include/sys/statvfs.h
  7. 9 0
      include/sys/types.h

+ 5 - 0
include/sys/mman.h

@@ -33,6 +33,11 @@ int madvise (void *, size_t, int);
 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

+ 6 - 0
include/sys/resource.h

@@ -87,6 +87,12 @@ int prlimit(pid_t, int, const struct rlimit *, struct rlimit *);
 
 #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
 }

+ 5 - 0
include/sys/sendfile.h

@@ -9,6 +9,11 @@ extern "C" {
 
 ssize_t sendfile(int, int, off_t *, size_t);
 
+#ifdef _LARGEFILE64_SOURCE
+#define sendfile64 sendfile
+#define off64_t off_t
+#endif
+
 #ifdef __cplusplus
 }
 #endif

+ 11 - 0
include/sys/stat.h

@@ -96,6 +96,17 @@ int lchmod(const char *, mode_t);
 #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

+ 7 - 0
include/sys/statfs.h

@@ -16,6 +16,13 @@ typedef struct {
 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

+ 7 - 0
include/sys/statvfs.h

@@ -41,6 +41,13 @@ int fstatvfs (int, struct statvfs *);
 #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

+ 9 - 0
include/sys/types.h

@@ -72,6 +72,15 @@ typedef long register_t;
 #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