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" ) ) ]
3
7
pub mod aio;
4
8
5
- #[ cfg( any( target_os = "linux " , target_os = "android " ) ) ]
9
+ #[ cfg( any( target_os = "android " , target_os = "linux " ) ) ]
6
10
pub mod epoll;
7
11
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" ) ) ]
10
18
pub mod event;
11
19
12
20
#[ cfg( target_os = "linux" ) ]
@@ -46,7 +54,7 @@ pub mod uio;
46
54
47
55
pub mod time;
48
56
49
- #[ cfg( any( target_os = "linux " , target_os = "android " ) ) ]
57
+ #[ cfg( any( target_os = "android " , target_os = "linux " ) ) ]
50
58
pub mod ptrace;
51
59
52
60
pub mod select;
You can’t perform that action at this time.
0 commit comments