Rollup merge of #122986 - taiki-e:aix-c-char, r=Mark-Simulacrum · model-checking/verify-rust-std@79e1daf (original) (raw)
Navigation Menu
- GitHub Copilot Write better code with AI
- GitHub Models New Manage and compare prompts
- GitHub Advanced Security Find and fix vulnerabilities
- Actions Automate any workflow
- Codespaces Instant dev environments
- Issues Plan and track work
- Code Review Manage code changes
- Discussions Collaborate outside of code
- Code Search Find more, search less
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Appearance settings
Commit 79e1daf
File tree
1 file changed
lines changed
1 file changed
lines changed
Lines changed: 2 additions & 1 deletion
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -133,7 +133,8 @@ mod c_char_definition { | ||
133 | 133 | any(target_arch = "aarch64", target_arch = "riscv64") |
134 | 134 | ), |
135 | 135 | all(target_os = "nto", target_arch = "aarch64"), |
136 | - target_os = "horizon" | |
136 | + target_os = "horizon", | |
137 | + target_os = "aix", | |
137 | 138 | ))] { |
138 | 139 | pub type c_char = u8; |
139 | 140 | } else { |