Blame arch/nt64/bits/stat.h

87820a
/* copied from kernel definition, but with padding replaced
87820a
 * by the corresponding correctly-sized userspace types. */
87820a
87820a
struct stat {
87820a
	dev_t st_dev;
87820a
	ino_t st_ino;
87820a
	nlink_t st_nlink;
87820a
87820a
	mode_t st_mode;
87820a
	uid_t st_uid;
87820a
	gid_t st_gid;
87820a
	unsigned int    __pad0;
87820a
	dev_t st_rdev;
87820a
	off_t st_size;
87820a
	blksize_t st_blksize;
87820a
	blkcnt_t st_blocks;
87820a
87820a
	struct timespec st_atim;
87820a
	struct timespec st_mtim;
87820a
	struct timespec st_ctim;
87820a
	long __unused[3];
87820a
};