File tree 1 file changed +1
-8
lines changed
library/std/src/sys/pal/unix
1 file changed +1
-8
lines changed Original file line number Diff line number Diff line change @@ -8,16 +8,11 @@ mod tests;
8
8
use libc:: c_char;
9
9
#[ cfg( any(
10
10
all( target_os = "linux" , not( target_env = "musl" ) ) ,
11
- target_os = "emscripten" ,
12
11
target_os = "android" ,
13
12
target_os = "hurd"
14
13
) ) ]
15
14
use libc:: dirfd;
16
- #[ cfg( any(
17
- all( target_os = "linux" , not( target_env = "musl" ) ) ,
18
- target_os = "emscripten" ,
19
- target_os = "hurd"
20
- ) ) ]
15
+ #[ cfg( any( all( target_os = "linux" , not( target_env = "musl" ) ) , target_os = "hurd" ) ) ]
21
16
use libc:: fstatat64;
22
17
#[ cfg( any(
23
18
target_os = "android" ,
@@ -896,7 +891,6 @@ impl DirEntry {
896
891
#[ cfg( all(
897
892
any(
898
893
all( target_os = "linux" , not( target_env = "musl" ) ) ,
899
- target_os = "emscripten" ,
900
894
target_os = "android" ,
901
895
target_os = "hurd"
902
896
) ,
@@ -925,7 +919,6 @@ impl DirEntry {
925
919
#[ cfg( any(
926
920
not( any(
927
921
all( target_os = "linux" , not( target_env = "musl" ) ) ,
928
- target_os = "emscripten" ,
929
922
target_os = "android" ,
930
923
target_os = "hurd" ,
931
924
) ) ,
You can’t perform that action at this time.
0 commit comments