* commit '2fa423f49fb70e3ab60eb61e813273e66b757ce6': x86_64: Fix sys/stat.h
This commit is contained in:
commit
1243c04c00
@ -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