aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2022-12-12 12:50:07 -0800
committerKhem Raj <raj.khem@gmail.com>2022-12-12 12:55:20 -0800
commit7dfa8984f5a30f313d8675ff6097c8592d636d10 (patch)
tree9339835e928cd12dcd21041fab956938ecfe1020
parent913f7b48647bdbd23fdc4abccf2168b061273aa4 (diff)
downloadgptfdisk-7dfa8984f5a30f313d8675ff6097c8592d636d10.tar.gz
Use 64bit time_t on linux as well
Alias 64bit version of stat functions to original functions we are already passing -D_FILE_OFFSET_BITS=64 in linux Makefile Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--diskio-unix.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/diskio-unix.cc b/diskio-unix.cc
index 7780aeb..0897c56 100644
--- a/diskio-unix.cc
+++ b/diskio-unix.cc
@@ -37,8 +37,12 @@
using namespace std;
-#ifdef __APPLE__
+#if defined(__APPLE__) || defined(__linux__)
#define off64_t off_t
+#define stat64 stat
+#define fstat64 fstat
+#define lstat64 lstat
+#define lseek64 lseek
#endif
// Returns the official "real" name for a shortened version of same.