File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -67,15 +67,15 @@ bitflags! {
6767 const RESOLVE_BENEATH = bitcast!( c:: AT_RESOLVE_BENEATH ) ;
6868
6969 /// `AT_STATX_SYNC_AS_STAT`
70- #[ cfg( all( target_os = "linux" , target_env = "gnu" ) ) ]
70+ #[ cfg( all( target_os = "linux" , any ( target_env = "gnu" , target_env = "musl" ) ) ) ]
7171 const STATX_SYNC_AS_STAT = bitcast!( c:: AT_STATX_SYNC_AS_STAT ) ;
7272
7373 /// `AT_STATX_FORCE_SYNC`
74- #[ cfg( all( target_os = "linux" , target_env = "gnu" ) ) ]
74+ #[ cfg( all( target_os = "linux" , any ( target_env = "gnu" , target_env = "musl" ) ) ) ]
7575 const STATX_FORCE_SYNC = bitcast!( c:: AT_STATX_FORCE_SYNC ) ;
7676
7777 /// `AT_STATX_DONT_SYNC`
78- #[ cfg( all( target_os = "linux" , target_env = "gnu" ) ) ]
78+ #[ cfg( all( target_os = "linux" , any ( target_env = "gnu" , target_env = "musl" ) ) ) ]
7979 const STATX_DONT_SYNC = bitcast!( c:: AT_STATX_DONT_SYNC ) ;
8080
8181 /// <https://docs.rs/bitflags/*/bitflags/#externally-defined-flags>
You can’t perform that action at this time.
0 commit comments