fix dup3 ignoring all flags but O_CLOEXEC on archs with SYS_dup2 syscall
[musl] / arch / x32 / kstat.h
1 struct kstat {
2         dev_t st_dev;
3         ino_t st_ino;
4         nlink_t st_nlink;
5
6         mode_t st_mode;
7         uid_t st_uid;
8         gid_t st_gid;
9         unsigned int    __pad0;
10         dev_t st_rdev;
11         off_t st_size;
12         blksize_t st_blksize;
13         blkcnt_t st_blocks;
14
15         long long st_atime_sec;
16         long st_atime_nsec;
17         long long st_mtime_sec;
18         long st_mtime_nsec;
19         long long st_ctime_sec;
20         long st_ctime_nsec;
21         long long __unused[3];
22 };