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 6e95369 commit 585d45aCopy full SHA for 585d45a
src/hermit/mod.rs
@@ -41,11 +41,9 @@ pub type intptr_t = isize;
41
pub type uintptr_t = usize;
42
pub type ssize_t = isize;
43
44
-pub type c_char = i8;
45
pub type c_long = i64;
46
pub type c_ulong = u64;
47
48
-pub type wchar_t = i32;
49
pub type wint_t = u32;
50
pub type wctype_t = i64;
51
src/lib.rs
@@ -107,7 +107,7 @@ cfg_if! {
107
mod unix;
108
pub use unix::*;
109
} else if #[cfg(target_os = "hermit")] {
110
- mod redox;
+ mod hermit;
111
pub use hermit::*;
112
} else if #[cfg(target_env = "sgx")] {
113
mod sgx;
0 commit comments