add powerpc64 port
[musl] / arch / powerpc64 / bits / stat.h
1 struct stat
2 {
3         dev_t st_dev;
4         ino_t st_ino;
5         nlink_t st_nlink;
6         mode_t st_mode;
7         uid_t st_uid;
8         gid_t st_gid;
9         dev_t st_rdev;
10         off_t st_size;
11         blksize_t st_blksize;
12         blkcnt_t st_blocks;
13         struct timespec st_atim;
14         struct timespec st_mtim;
15         struct timespec st_ctim;
16         unsigned long __unused[3];
17 };