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" ,
@@ -893,7 +888,6 @@ impl DirEntry {
893
888
#[ cfg( all(
894
889
any(
895
890
all( target_os = "linux" , not( target_env = "musl" ) ) ,
896
- target_os = "emscripten" ,
897
891
target_os = "android" ,
898
892
target_os = "hurd"
899
893
) ,
@@ -922,7 +916,6 @@ impl DirEntry {
922
916
#[ cfg( any(
923
917
not( any(
924
918
all( target_os = "linux" , not( target_env = "musl" ) ) ,
925
- target_os = "emscripten" ,
926
919
target_os = "android" ,
927
920
target_os = "hurd" ,
928
921
) ) ,
You can’t perform that action at this time.
0 commit comments