summaryrefslogtreecommitdiff
path: root/src/sgx.rs
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/sgx.rs
parentb6ab2f056c35caee56b47c5780d72da3c6d31697 (diff)
downloadrust-libc-08a4519714444e10d6f494b426805e265f981628.tar.gz
Refactor fixed-width integer types into its own module
Diffstat (limited to 'src/sgx.rs')
-rw-r--r--src/sgx.rs9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/sgx.rs b/src/sgx.rs
index 8a69ad36e4..7da6269399 100644
--- a/src/sgx.rs
+++ b/src/sgx.rs
@@ -1,14 +1,5 @@
//! SGX C types definition
-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;