Skip to content
Snippets Groups Projects
Commit 772a3acf authored by John Paul Adrian Glaubitz's avatar John Paul Adrian Glaubitz
Browse files

Fix type definition for c_char on sparc-unknown-linux-gnu

On sparc-unknown-linux-gnu, char is signed, not unsigned.
parent 87d3a326
No related branches found
No related tags found
No related merge requests found
//! SPARC-specific definitions for 32-bit linux-like values
pub type c_char = u8;
pub type c_char = i8;
pub type wchar_t = i32;
s! {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment