fix incorrect TLS reloc macro names in x86_64 reloc.h
[musl] / arch / mips / bits / stat.h
1 /* copied from kernel definition, but with padding replaced
2  * by the corresponding correctly-sized userspace types. */
3
4 struct stat
5 {
6         dev_t st_dev;
7         long __st_padding1[2];
8         ino_t st_ino;
9         mode_t st_mode;
10         nlink_t st_nlink;
11         uid_t st_uid;
12         gid_t st_gid;
13         dev_t st_rdev;
14         long __st_padding2[2];
15         off_t st_size;
16         struct timespec st_atim;
17         struct timespec st_mtim;
18         struct timespec st_ctim;
19         blksize_t st_blksize;
20         long __st_padding3;
21         blkcnt_t st_blocks;
22         long __st_padding4[14];
23 };