We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3311ba8 commit 1a45839Copy full SHA for 1a45839
src/unix/bsd/netbsdlike/openbsd/mod.rs
@@ -1438,6 +1438,9 @@ cfg_if! {
1438
} else if #[cfg(target_arch = "aarch64")] {
1439
mod aarch64;
1440
pub use self::aarch64::*;
1441
+ } else if #[cfg(target_arch = "sparc64")] {
1442
+ mod sparc64;
1443
+ pub use self::sparc64::*;
1444
} else {
1445
// Unknown target_arch
1446
}
src/unix/bsd/netbsdlike/openbsd/sparc64.rs
@@ -0,0 +1,8 @@
1
+pub type c_long = i64;
2
+pub type c_ulong = u64;
3
+pub type c_char = i8;
4
+
5
+#[doc(hidden)]
6
+pub const _ALIGNBYTES: usize = 0xf;
7
8
+pub const _MAX_PAGE_SHIFT: u32 = 13;
0 commit comments