We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2cfb7f commit 8db6300Copy full SHA for 8db6300
1 file changed
src/fuchsia/aarch64.rs
@@ -6,6 +6,8 @@ pub type wchar_t = u32;
6
pub type nlink_t = c_ulong;
7
pub type blksize_t = c_long;
8
9
+pub type stat64 = stat;
10
+
11
s! {
12
pub struct stat {
13
pub st_dev: crate::dev_t,
@@ -29,28 +31,6 @@ s! {
29
31
__unused: Padding<[c_uint; 2]>,
30
32
}
33
- pub struct stat64 {
- 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
-
54
pub struct ipc_perm {
55
pub __ipc_perm_key: crate::key_t,
56
pub uid: crate::uid_t,
0 commit comments