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:
commit
2a1b63251a
1 changed files with 2 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue