summaryrefslogtreecommitdiff
path: root/05/musl-0.6.0/arch/x86_64/bits/stat.h
diff options
context:
space:
mode:
Diffstat (limited to '05/musl-0.6.0/arch/x86_64/bits/stat.h')
-rw-r--r--05/musl-0.6.0/arch/x86_64/bits/stat.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/05/musl-0.6.0/arch/x86_64/bits/stat.h b/05/musl-0.6.0/arch/x86_64/bits/stat.h
index 2145796..64dab33 100644
--- a/05/musl-0.6.0/arch/x86_64/bits/stat.h
+++ b/05/musl-0.6.0/arch/x86_64/bits/stat.h
@@ -20,3 +20,23 @@ struct stat {
struct timespec st_ctim;
long __unused[3];
};
+
+struct stat64 {
+ unsigned long st_dev;
+ ino_t st_ino;
+ nlink_t st_nlink;
+
+ mode_t st_mode;
+ uid_t st_uid;
+ gid_t st_gid;
+ unsigned int __pad0;
+ dev_t st_rdev;
+ off_t st_size;
+ blksize_t st_blksize;
+ blkcnt_t st_blocks;
+
+ struct timespec st_atim;
+ struct timespec st_mtim;
+ struct timespec st_ctim;
+ long __unused[3];
+};