Rollup merge of #122986 - taiki-e:aix-c-char, r=Mark-Simulacrum

Fix c_char on AIX

Closes https://github.com/rust-lang/rust/issues/122985
This commit is contained in:
Matthias Krüger 2024-05-25 22:15:16 +02:00 committed by GitHub
commit 2a1b63251a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -133,7 +133,8 @@ mod c_char_definition {
any(target_arch = "aarch64", target_arch = "riscv64")
),
all(target_os = "nto", target_arch = "aarch64"),
target_os = "horizon"
target_os = "horizon",
target_os = "aix",
))] {
pub type c_char = u8;
} else {