]> git.proxmox.com Git - wasi-libc.git/blob - libc-top-half/musl/arch/s390x/bits/stat.h
WASI libc prototype implementation.
[wasi-libc.git] / libc-top-half / musl / arch / s390x / bits / stat.h
1 struct stat {
2 dev_t st_dev;
3 ino_t st_ino;
4 nlink_t st_nlink;
5 mode_t st_mode;
6 uid_t st_uid;
7 gid_t st_gid;
8 dev_t st_rdev;
9 off_t st_size;
10 struct timespec st_atim;
11 struct timespec st_mtim;
12 struct timespec st_ctim;
13 blksize_t st_blksize;
14 blkcnt_t st_blocks;
15 unsigned long __unused[3];
16 };