File tree Expand file tree Collapse file tree 4 files changed +5
-8
lines changed Expand file tree Collapse file tree 4 files changed +5
-8
lines changed Original file line number Diff line number Diff line change 8484 }
8585
8686 pub struct pthread_mutexattr_t {
87- #[ cfg( any( target_arch = "x86_64" , target_arch = "powerpc64" ,
88- target_arch = "powerpc64le" ) ) ]
87+ #[ cfg( any( target_arch = "x86_64" , target_arch = "powerpc64" ) ) ]
8988 __align: [ :: c_int; 0 ] ,
90- #[ cfg( not( any( target_arch = "x86_64" , target_arch = "powerpc64" ,
91- target_arch = "powerpc64le" ) ) ) ]
89+ #[ cfg( not( any( target_arch = "x86_64" , target_arch = "powerpc64" ) ) ) ]
9290 __align: [ :: c_long; 0 ] ,
9391 size: [ u8 ; __SIZEOF_PTHREAD_MUTEXATTR_T] ,
9492 }
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ cfg_if! {
2222 if #[ cfg( target_arch = "aarch64" ) ] {
2323 mod aarch64;
2424 pub use self :: aarch64:: * ;
25- } else if #[ cfg( any( target_arch = "powerpc64" , target_arch = "powerpc64le" ) ) ] {
25+ } else if #[ cfg( any( target_arch = "powerpc64" ) ) ] {
2626 mod powerpc64;
2727 pub use self :: powerpc64:: * ;
2828 } else {
Original file line number Diff line number Diff line change 11//! PowerPC64-specific definitions for 64-bit linux-like values
22
33pub type c_char = u8 ;
4- pub type wchar_t = u32 ;
4+ pub type wchar_t = i32 ;
55pub type nlink_t = u64 ;
66pub type blksize_t = i64 ;
77
Original file line number Diff line number Diff line change @@ -454,8 +454,7 @@ cfg_if! {
454454 pub use self :: b32:: * ;
455455 } else if #[ cfg( any( target_arch = "x86_64" ,
456456 target_arch = "aarch64" ,
457- target_arch = "powerpc64" ,
458- target_arch = "powerpc64le" ) ) ] {
457+ target_arch = "powerpc64" ) ) ] {
459458 mod b64;
460459 pub use self :: b64:: * ;
461460 } else {
You can’t perform that action at this time.
0 commit comments