77
77
pub struct statfs {
78
78
#[ cfg( not( any( target_arch = "mips" , target_arch = "s390x" ) ) ) ]
79
79
pub f_type: :: __fsword_t,
80
- #[ cfg( any ( target_arch = "mips" ) ) ]
80
+ #[ cfg( target_arch = "mips" ) ]
81
81
pub f_type: :: c_long,
82
- #[ cfg( any ( target_arch = "s390x" ) ) ]
82
+ #[ cfg( target_arch = "s390x" ) ]
83
83
pub f_type: :: c_uint,
84
84
85
85
#[ cfg( not( any( target_arch = "mips" , target_arch = "s390x" ) ) ) ]
86
86
pub f_bsize: :: __fsword_t,
87
- #[ cfg( any ( target_arch = "mips" ) ) ]
87
+ #[ cfg( target_arch = "mips" ) ]
88
88
pub f_bsize: :: c_long,
89
- #[ cfg( any ( target_arch = "s390x" ) ) ]
89
+ #[ cfg( target_arch = "s390x" ) ]
90
90
pub f_bsize: :: c_uint,
91
91
#[ cfg( any( target_arch = "mips" , target_arch = "mips64" ) ) ]
92
92
pub f_frsize: :: c_long,
@@ -102,13 +102,17 @@ s! {
102
102
pub f_bavail: :: fsblkcnt_t,
103
103
pub f_fsid: :: fsid_t,
104
104
105
- #[ cfg( any( target_arch = "mips" , target_arch = "s390x" ) ) ]
105
+ #[ cfg( not ( any( target_arch = "mips" , target_arch = "s390x" ) ) ) ]
106
106
pub f_namelen: :: __fsword_t,
107
- #[ cfg( any ( target_arch = "mips" ) ) ]
107
+ #[ cfg( target_arch = "mips" ) ]
108
108
pub f_namelen: :: c_long,
109
- #[ cfg( any ( target_arch = "s390x" ) ) ]
109
+ #[ cfg( target_arch = "s390x" ) ]
110
110
pub f_namelen: :: c_uint,
111
- #[ cfg( not( any( target_arch = "mips" , target_arch = "mips64" , target_arch = "s390x" ) ) ) ]
111
+ #[ cfg( not( any(
112
+ target_arch = "mips" ,
113
+ target_arch = "mips64" ,
114
+ target_arch = "s390x"
115
+ ) ) ) ]
112
116
pub f_frsize: :: __fsword_t,
113
117
#[ cfg( any( target_arch = "s390x" ) ) ]
114
118
pub f_frsize: :: c_uint,
0 commit comments