summaryrefslogtreecommitdiff
path: root/src/hermit
diff options
context:
space:
mode:
authorgnzlbg <gonzalobg88@gmail.com>2019-05-29 13:05:49 +0200
committergnzlbg <gonzalobg88@gmail.com>2019-05-29 13:05:49 +0200
commit08a4519714444e10d6f494b426805e265f981628 (patch)
treebf14a1bc228cbfe0a4e36c8efe3b220b8bfbf77e /src/hermit
parentb6ab2f056c35caee56b47c5780d72da3c6d31697 (diff)
downloadrust-libc-08a4519714444e10d6f494b426805e265f981628.tar.gz
Refactor fixed-width integer types into its own module
Diffstat (limited to 'src/hermit')
-rw-r--r--src/hermit/mod.rs9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/hermit/mod.rs b/src/hermit/mod.rs
index 3e15175a58..9880b50723 100644
--- a/src/hermit/mod.rs
+++ b/src/hermit/mod.rs
@@ -13,15 +13,6 @@
// Ported by Colin Fink <colin.finck@rwth-aachen.de>
// and Stefan Lankes <slankes@eonerc.rwth-aachen.de>
-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;