diff options
Diffstat (limited to 'src/libstd/os/raw.rs')
| -rw-r--r-- | src/libstd/os/raw.rs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/libstd/os/raw.rs b/src/libstd/os/raw.rs index 31d889fd422..bd353f066cf 100644 --- a/src/libstd/os/raw.rs +++ b/src/libstd/os/raw.rs @@ -16,15 +16,13 @@ all(target_os = "linux", any(target_arch = "aarch64", target_arch = "arm", target_arch = "powerpc", - target_arch = "powerpc64", - target_arch = "powerpc64le"))))] + target_arch = "powerpc64"))))] #[stable(feature = "raw_os", since = "1.1.0")] pub type c_char = u8; #[cfg(not(any(target_os = "android", all(target_os = "linux", any(target_arch = "aarch64", target_arch = "arm", target_arch = "powerpc", - target_arch = "powerpc64", - target_arch = "powerpc64le")))))] + target_arch = "powerpc64")))))] #[stable(feature = "raw_os", since = "1.1.0")] pub type c_char = i8; #[stable(feature = "raw_os", since = "1.1.0")] pub type c_schar = i8; #[stable(feature = "raw_os", since = "1.1.0")] pub type c_uchar = u8; |
