mirror of https://git.musl-libc.org/git/musl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
363 B
21 lines
363 B
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;
|
|
};
|
|
|