>From db94dfb2155f4d83d42c69250e886d05f9194faa Mon Sep 17 00:00:00 2001 From: Szabolcs Nagy Date: Thu, 4 Sep 2014 22:14:24 +0200 Subject: [PATCH 2/2] fix the macros for LFS *64_t types in sys/stat.h there is no blksize64_t (blksize_t is always long) but there are fsblkcnt64_t and fsfilcnt64_t types. --- include/sys/stat.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/sys/stat.h b/include/sys/stat.h index c6abab5..82a6490 100644 --- a/include/sys/stat.h +++ b/include/sys/stat.h @@ -100,8 +100,9 @@ int lchmod(const char *, mode_t); #define fstat64 fstat #define lstat64 lstat #define fstatat64 fstatat -#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 -- 1.7.10.4