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! {
115
115
mod switch;
116
116
pub use switch:: * ;
117
117
} 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:: * ;
120
123
} else if #[ cfg( unix) ] {
121
124
mod fixed_width_ints;
122
125
pub use fixed_width_ints:: * ;
Original file line number Diff line number Diff line change @@ -11,15 +11,6 @@ impl ::Clone for DIR {
11
11
}
12
12
}
13
13
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
-
23
14
pub type c_schar = i8 ;
24
15
pub type c_uchar = u8 ;
25
16
pub type c_short = i16 ;
You can’t perform that action at this time.
0 commit comments