diff options
Diffstat (limited to 'libc-top-half/musl/arch/mips64/kstat.h')
-rw-r--r-- | libc-top-half/musl/arch/mips64/kstat.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/libc-top-half/musl/arch/mips64/kstat.h b/libc-top-half/musl/arch/mips64/kstat.h new file mode 100644 index 0000000..9a4468b --- /dev/null +++ b/libc-top-half/musl/arch/mips64/kstat.h @@ -0,0 +1,21 @@ +struct kstat { + unsigned st_dev; + int __pad1[3]; + ino_t st_ino; + mode_t st_mode; + unsigned st_nlink; + uid_t st_uid; + gid_t st_gid; + unsigned st_rdev; + int __pad2[3]; + off_t st_size; + int st_atime_sec; + int st_atime_nsec; + int st_mtime_sec; + int st_mtime_nsec; + int st_ctime_sec; + int st_ctime_nsec; + unsigned st_blksize; + unsigned __pad3; + blkcnt_t st_blocks; +}; |