@@ -769,7 +769,11 @@ extern "C" {
769
769
link_name = "fstat@FBSD_1.0"
770
770
) ]
771
771
#[ cfg_attr(
772
- all( target_os = "linux" , target_env = "gnu" , target_pointer_width = "32" , not( target_arch = "x86_64" ) ) ,
772
+ all(
773
+ target_env = "gnu" ,
774
+ target_pointer_width = "32" ,
775
+ not( target_arch = "x86_64" )
776
+ ) ,
773
777
link_name = "__fstat64_time64"
774
778
) ]
775
779
pub fn fstat ( fildes : :: c_int , buf : * mut stat ) -> :: c_int ;
@@ -786,7 +790,11 @@ extern "C" {
786
790
link_name = "stat@FBSD_1.0"
787
791
) ]
788
792
#[ cfg_attr(
789
- all( target_os = "linux" , target_env = "gnu" , target_pointer_width = "32" , not( target_arch = "x86_64" ) ) ,
793
+ all(
794
+ target_env = "gnu" ,
795
+ target_pointer_width = "32" ,
796
+ not( target_arch = "x86_64" )
797
+ ) ,
790
798
link_name = "__stat64_time64"
791
799
) ]
792
800
pub fn stat ( path : * const c_char , buf : * mut stat ) -> :: c_int ;
@@ -1127,7 +1135,11 @@ extern "C" {
1127
1135
link_name = "lstat@FBSD_1.0"
1128
1136
) ]
1129
1137
#[ cfg_attr(
1130
- all( target_os = "linux" , target_env = "gnu" , target_pointer_width = "32" , not( target_arch = "x86_64" ) ) ,
1138
+ all(
1139
+ target_env = "gnu" ,
1140
+ target_pointer_width = "32" ,
1141
+ not( target_arch = "x86_64" )
1142
+ ) ,
1131
1143
link_name = "__lstat64_time64"
1132
1144
) ]
1133
1145
pub fn lstat ( path : * const c_char , buf : * mut stat ) -> :: c_int ;
0 commit comments