File tree Expand file tree Collapse file tree 2 files changed +5
-11
lines changed Expand file tree Collapse file tree 2 files changed +5
-11
lines changed Original file line number Diff line number Diff line change @@ -115,8 +115,11 @@ cfg_if! {
115115 mod switch;
116116 pub use switch:: * ;
117117 } else if #[ cfg( target_os = "vxworks" ) ] {
118- mod vxworks;
119- pub use vxworks:: * ;
118+ mod fixed_width_ints;
119+ pub use fixed_width_ints:: * ;
120+
121+ mod vxworks;
122+ pub use vxworks:: * ;
120123 } else if #[ cfg( unix) ] {
121124 mod fixed_width_ints;
122125 pub use fixed_width_ints:: * ;
Original file line number Diff line number Diff line change @@ -11,15 +11,6 @@ impl ::Clone for DIR {
1111 }
1212}
1313
14- pub type int8_t = i8 ;
15- pub type int16_t = i16 ;
16- pub type int32_t = i32 ;
17- pub type int64_t = i64 ;
18- pub type uint8_t = u8 ;
19- pub type uint16_t = u16 ;
20- pub type uint32_t = u32 ;
21- pub type uint64_t = u64 ;
22-
2314pub type c_schar = i8 ;
2415pub type c_uchar = u8 ;
2516pub type c_short = i16 ;
You can’t perform that action at this time.
0 commit comments