We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54ea12d commit 1ca558dCopy full SHA for 1ca558d
src/lib.rs
@@ -113,7 +113,7 @@ cfg_if! {
113
114
mod switch;
115
pub use switch::*;
116
- } else if #[cfg(unix)] {
+ } else if #[cfg(any(unix, target_os="redox"))] {
117
mod fixed_width_ints;
118
pub use fixed_width_ints::*;
119
src/unix/redox/mod.rs
@@ -35,6 +35,7 @@ pub type speed_t = u32;
35
pub type suseconds_t = ::c_int;
36
pub type tcflag_t = u32;
37
pub type time_t = ::c_long;
38
+pub enum timezone {}
39
40
s! {
41
pub struct addrinfo {
0 commit comments