* commit '95cbf5e1c80d0cbc481fa93ef385599ec0e314c6': Fix mips64 struct stat64
This commit is contained in:
@@ -37,7 +37,7 @@
|
|||||||
|
|
||||||
__BEGIN_DECLS
|
__BEGIN_DECLS
|
||||||
|
|
||||||
#if defined(__aarch64__)
|
#if defined(__aarch64__) || (defined(__mips__) && defined(__LP64__))
|
||||||
#define __STAT64_BODY \
|
#define __STAT64_BODY \
|
||||||
unsigned long st_dev; \
|
unsigned long st_dev; \
|
||||||
unsigned long st_ino; \
|
unsigned long st_ino; \
|
||||||
@@ -60,7 +60,7 @@ __BEGIN_DECLS
|
|||||||
unsigned int __unused4; \
|
unsigned int __unused4; \
|
||||||
unsigned int __unused5; \
|
unsigned int __unused5; \
|
||||||
|
|
||||||
#elif defined(__mips__)
|
#elif defined(__mips__) && !defined(__LP64__)
|
||||||
#define __STAT64_BODY \
|
#define __STAT64_BODY \
|
||||||
unsigned int st_dev; \
|
unsigned int st_dev; \
|
||||||
unsigned int __pad0[3]; \
|
unsigned int __pad0[3]; \
|
||||||
|
|||||||
Reference in New Issue
Block a user