am 79f79c90
: Merge "x86_64: Fix sys/stat.h"
* commit '79f79c907f03ff71f800ae2b7a4a00dfb64f0538': x86_64: Fix sys/stat.h
This commit is contained in:
commit
c54e7b8d30
@ -73,6 +73,29 @@ struct stat {
|
|||||||
|
|
||||||
unsigned long long st_blocks;
|
unsigned long long st_blocks;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#elif __x86_64__
|
||||||
|
struct stat {
|
||||||
|
unsigned long st_dev;
|
||||||
|
unsigned long st_ino;
|
||||||
|
unsigned long st_nlink;
|
||||||
|
unsigned int st_mode;
|
||||||
|
unsigned int st_uid;
|
||||||
|
unsigned int st_gid;
|
||||||
|
unsigned int __pad0;
|
||||||
|
unsigned long st_rdev;
|
||||||
|
long st_size;
|
||||||
|
long st_blksize;
|
||||||
|
long st_blocks;
|
||||||
|
unsigned long st_atime;
|
||||||
|
unsigned long st_atime_nsec;
|
||||||
|
unsigned long st_mtime;
|
||||||
|
unsigned long st_mtime_nsec;
|
||||||
|
unsigned long st_ctime;
|
||||||
|
unsigned long st_ctime_nsec;
|
||||||
|
long __pad3[3];
|
||||||
|
};
|
||||||
|
|
||||||
#else
|
#else
|
||||||
struct stat {
|
struct stat {
|
||||||
unsigned long long st_dev;
|
unsigned long long st_dev;
|
||||||
|
Loading…
Reference in New Issue
Block a user