File tree Expand file tree Collapse file tree 1 file changed +15
-3
lines changed Expand file tree Collapse file tree 1 file changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -239,7 +239,11 @@ cfg_if! {
239
239
}
240
240
241
241
cfg_if ! {
242
- if #[ cfg( any( target_env = "gnu" , target_os = "android" , target_env = "musl" ) ) ] {
242
+ if #[ cfg( any(
243
+ target_env = "gnu" ,
244
+ target_os = "android" ,
245
+ target_env = "musl"
246
+ ) ) ] {
243
247
s! {
244
248
pub struct statx {
245
249
pub stx_mask: crate :: __u32,
@@ -1709,7 +1713,11 @@ cfg_if! {
1709
1713
}
1710
1714
1711
1715
cfg_if ! {
1712
- if #[ cfg( any( target_env = "gnu" , target_os = "android" , target_env = "musl" ) ) ] {
1716
+ if #[ cfg( any(
1717
+ target_env = "gnu" ,
1718
+ target_os = "android" ,
1719
+ target_env = "musl"
1720
+ ) ) ] {
1713
1721
pub const AT_STATX_SYNC_TYPE : c_int = 0x6000 ;
1714
1722
pub const AT_STATX_SYNC_AS_STAT : c_int = 0x0000 ;
1715
1723
pub const AT_STATX_FORCE_SYNC : c_int = 0x2000 ;
@@ -2206,7 +2214,11 @@ cfg_if! {
2206
2214
2207
2215
// The statx syscall, available on some libcs.
2208
2216
cfg_if ! {
2209
- if #[ cfg( any( target_env = "gnu" , target_os = "android" , target_env = "musl" ) ) ] {
2217
+ if #[ cfg( any(
2218
+ target_env = "gnu" ,
2219
+ target_os = "android" ,
2220
+ target_env = "musl"
2221
+ ) ) ] {
2210
2222
extern "C" {
2211
2223
pub fn statx(
2212
2224
dirfd: c_int,
You can’t perform that action at this time.
0 commit comments