diff options
Diffstat (limited to 'libc/src/windows')
-rw-r--r-- | libc/src/windows/mod.rs | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/libc/src/windows/mod.rs b/libc/src/windows/mod.rs index 70ca675..be28b70 100644 --- a/libc/src/windows/mod.rs +++ b/libc/src/windows/mod.rs @@ -1,14 +1,5 @@ //! Windows CRT definitions -pub type int8_t = i8; -pub type int16_t = i16; -pub type int32_t = i32; -pub type int64_t = i64; -pub type uint8_t = u8; -pub type uint16_t = u16; -pub type uint32_t = u32; -pub type uint64_t = u64; - pub type c_schar = i8; pub type c_uchar = u8; pub type c_short = i16; |