File tree Expand file tree Collapse file tree 1 file changed +14
-6
lines changed Expand file tree Collapse file tree 1 file changed +14
-6
lines changed Original file line number Diff line number Diff line change 1- #[ cfg( any( target_os = "freebsd" , target_os = "dragonfly" , target_os = "ios" ,
2- target_os = "netbsd" , target_os = "macos" , target_os = "linux" ) ) ]
1+ #[ cfg( any( target_os = "dragonfly" ,
2+ target_os = "freebsd" ,
3+ target_os = "ios" ,
4+ target_os = "linux" ,
5+ target_os = "macos" ,
6+ target_os = "netbsd" ) ) ]
37pub mod aio;
48
5- #[ cfg( any( target_os = "linux " , target_os = "android " ) ) ]
9+ #[ cfg( any( target_os = "android " , target_os = "linux " ) ) ]
610pub mod epoll;
711
8- #[ cfg( any( target_os = "macos" , target_os = "ios" , target_os = "freebsd" ,
9- target_os = "dragonfly" , target_os = "openbsd" , target_os = "netbsd" ) ) ]
12+ #[ cfg( any( target_os = "dragonfly" ,
13+ target_os = "freebsd" ,
14+ target_os = "ios" ,
15+ target_os = "macos" ,
16+ target_os = "netbsd" ,
17+ target_os = "openbsd" ) ) ]
1018pub mod event;
1119
1220#[ cfg( target_os = "linux" ) ]
@@ -46,7 +54,7 @@ pub mod uio;
4654
4755pub mod time;
4856
49- #[ cfg( any( target_os = "linux " , target_os = "android " ) ) ]
57+ #[ cfg( any( target_os = "android " , target_os = "linux " ) ) ]
5058pub mod ptrace;
5159
5260pub mod select;
You can’t perform that action at this time.
0 commit comments