@@ -555,7 +555,8 @@ pub mod types {
555
555
pub type mode_t = u16 ;
556
556
pub type ssize_t = i32 ;
557
557
}
558
- #[ cfg( target_arch = "x86" ) ]
558
+ #[ cfg( any( target_arch = "x86" ,
559
+ target_arch = "powerpc" ) ) ]
559
560
pub mod posix01 {
560
561
use types:: os:: arch:: c95:: { c_short, c_long, time_t} ;
561
562
use types:: os:: arch:: posix88:: { dev_t, gid_t, ino_t} ;
@@ -646,8 +647,7 @@ pub mod types {
646
647
}
647
648
}
648
649
#[ cfg( any( target_arch = "mips" ,
649
- target_arch = "mipsel" ,
650
- target_arch = "powerpc" ) ) ]
650
+ target_arch = "mipsel" ) ) ]
651
651
pub mod posix01 {
652
652
use types:: os:: arch:: c95:: { c_long, c_ulong, time_t} ;
653
653
use types:: os:: arch:: posix88:: { gid_t, ino_t} ;
@@ -2491,7 +2491,8 @@ pub mod consts {
2491
2491
#[ cfg( any( target_arch = "x86" ,
2492
2492
target_arch = "x86_64" ,
2493
2493
target_arch = "arm" ,
2494
- target_arch = "aarch64" ) ) ]
2494
+ target_arch = "aarch64" ,
2495
+ target_arch = "powerpc" ) ) ]
2495
2496
pub mod posix88 {
2496
2497
use types:: os:: arch:: c95:: c_int;
2497
2498
use types:: common:: c95:: c_void;
@@ -2704,8 +2705,7 @@ pub mod consts {
2704
2705
}
2705
2706
2706
2707
#[ cfg( any( target_arch = "mips" ,
2707
- target_arch = "mipsel" ,
2708
- target_arch = "powerpc" ) ) ]
2708
+ target_arch = "mipsel" ) ) ]
2709
2709
pub mod posix88 {
2710
2710
use types:: os:: arch:: c95:: c_int;
2711
2711
use types:: common:: c95:: c_void;
@@ -3002,7 +3002,8 @@ pub mod consts {
3002
3002
#[ cfg( any( target_arch = "arm" ,
3003
3003
target_arch = "aarch64" ,
3004
3004
target_arch = "x86" ,
3005
- target_arch = "x86_64" ) ) ]
3005
+ target_arch = "x86_64" ,
3006
+ target_arch = "powerpc" ) ) ]
3006
3007
pub mod bsd44 {
3007
3008
use types:: os:: arch:: c95:: c_int;
3008
3009
@@ -3050,8 +3051,7 @@ pub mod consts {
3050
3051
pub const SHUT_RDWR : c_int = 2 ;
3051
3052
}
3052
3053
#[ cfg( any( target_arch = "mips" ,
3053
- target_arch = "mipsel" ,
3054
- target_arch = "powerpc" ) ) ]
3054
+ target_arch = "mipsel" ) ) ]
3055
3055
pub mod bsd44 {
3056
3056
use types:: os:: arch:: c95:: c_int;
3057
3057
@@ -3099,7 +3099,8 @@ pub mod consts {
3099
3099
#[ cfg( any( target_arch = "x86" ,
3100
3100
target_arch = "x86_64" ,
3101
3101
target_arch = "arm" ,
3102
- target_arch = "aarch64" ) ) ]
3102
+ target_arch = "aarch64" ,
3103
+ target_arch = "powerpc" ) ) ]
3103
3104
pub mod extra {
3104
3105
use types:: os:: arch:: c95:: c_int;
3105
3106
@@ -3127,8 +3128,7 @@ pub mod consts {
3127
3128
pub const MAP_STACK : c_int = 0x020000 ;
3128
3129
}
3129
3130
#[ cfg( any( target_arch = "mips" ,
3130
- target_arch = "mipsel" ,
3131
- target_arch = "powerpc" ) ) ]
3131
+ target_arch = "mipsel" ) ) ]
3132
3132
pub mod extra {
3133
3133
use types:: os:: arch:: c95:: c_int;
3134
3134
0 commit comments