|
60 | 60 | pub ss_size: size_t,
|
61 | 61 | }
|
62 | 62 |
|
| 63 | + pub struct stat { |
| 64 | + pub st_dev: crate::dev_t, |
| 65 | + __pad1: c_ushort, |
| 66 | + pub st_ino: crate::ino_t, |
| 67 | + pub st_mode: crate::mode_t, |
| 68 | + pub st_nlink: crate::nlink_t, |
| 69 | + pub st_uid: crate::uid_t, |
| 70 | + pub st_gid: crate::gid_t, |
| 71 | + pub st_rdev: crate::dev_t, |
| 72 | + __pad2: c_ushort, |
| 73 | + pub st_size: off_t, |
| 74 | + pub st_blksize: crate::blksize_t, |
| 75 | + pub st_blocks: crate::blkcnt_t, |
| 76 | + pub st_atime: crate::time_t, |
| 77 | + pub st_atime_nsec: c_long, |
| 78 | + pub st_mtime: crate::time_t, |
| 79 | + pub st_mtime_nsec: c_long, |
| 80 | + pub st_ctime: crate::time_t, |
| 81 | + pub st_ctime_nsec: c_long, |
| 82 | + __glibc_reserved4: c_ulong, |
| 83 | + __glibc_reserved5: c_ulong, |
| 84 | + } |
| 85 | + |
63 | 86 | pub struct stat64 {
|
64 | 87 | pub st_dev: crate::dev_t,
|
65 | 88 | pub st_ino: crate::ino64_t,
|
|
0 commit comments