Skip to content

Commit 8db6300

Browse files
committed
chore: wip
1 parent d2cfb7f commit 8db6300

1 file changed

Lines changed: 2 additions & 22 deletions

File tree

src/fuchsia/aarch64.rs

Lines changed: 2 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ pub type wchar_t = u32;
66
pub type nlink_t = c_ulong;
77
pub type blksize_t = c_long;
88

9+
pub type stat64 = stat;
10+
911
s! {
1012
pub struct stat {
1113
pub st_dev: crate::dev_t,
@@ -29,28 +31,6 @@ s! {
2931
__unused: Padding<[c_uint; 2]>,
3032
}
3133

32-
pub struct stat64 {
33-
pub st_dev: crate::dev_t,
34-
pub st_ino: crate::ino_t,
35-
pub st_mode: crate::mode_t,
36-
pub st_nlink: crate::nlink_t,
37-
pub st_uid: crate::uid_t,
38-
pub st_gid: crate::gid_t,
39-
pub st_rdev: crate::dev_t,
40-
__pad0: Padding<c_ulong>,
41-
pub st_size: off_t,
42-
pub st_blksize: crate::blksize_t,
43-
__pad1: Padding<c_int>,
44-
pub st_blocks: crate::blkcnt_t,
45-
pub st_atime: crate::time_t,
46-
pub st_atime_nsec: c_long,
47-
pub st_mtime: crate::time_t,
48-
pub st_mtime_nsec: c_long,
49-
pub st_ctime: crate::time_t,
50-
pub st_ctime_nsec: c_long,
51-
__unused: Padding<[c_uint; 2]>,
52-
}
53-
5434
pub struct ipc_perm {
5535
pub __ipc_perm_key: crate::key_t,
5636
pub uid: crate::uid_t,

0 commit comments

Comments
 (0)