File tree 4 files changed +5
-8
lines changed
4 files changed +5
-8
lines changed Original file line number Diff line number Diff line change 84
84
}
85
85
86
86
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" ) ) ]
89
88
__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" ) ) ) ]
92
90
__align: [ :: c_long; 0 ] ,
93
91
size: [ u8 ; __SIZEOF_PTHREAD_MUTEXATTR_T] ,
94
92
}
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ cfg_if! {
22
22
if #[ cfg( target_arch = "aarch64" ) ] {
23
23
mod aarch64;
24
24
pub use self :: aarch64:: * ;
25
- } else if #[ cfg( any( target_arch = "powerpc64" , target_arch = "powerpc64le" ) ) ] {
25
+ } else if #[ cfg( any( target_arch = "powerpc64" ) ) ] {
26
26
mod powerpc64;
27
27
pub use self :: powerpc64:: * ;
28
28
} else {
Original file line number Diff line number Diff line change 1
1
//! PowerPC64-specific definitions for 64-bit linux-like values
2
2
3
3
pub type c_char = u8 ;
4
- pub type wchar_t = u32 ;
4
+ pub type wchar_t = i32 ;
5
5
pub type nlink_t = u64 ;
6
6
pub type blksize_t = i64 ;
7
7
Original file line number Diff line number Diff line change @@ -454,8 +454,7 @@ cfg_if! {
454
454
pub use self :: b32:: * ;
455
455
} else if #[ cfg( any( target_arch = "x86_64" ,
456
456
target_arch = "aarch64" ,
457
- target_arch = "powerpc64" ,
458
- target_arch = "powerpc64le" ) ) ] {
457
+ target_arch = "powerpc64" ) ) ] {
459
458
mod b64;
460
459
pub use self :: b64:: * ;
461
460
} else {
You can’t perform that action at this time.
0 commit comments