diff options
Diffstat (limited to 'libc/src/sgx.rs')
-rw-r--r-- | libc/src/sgx.rs | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/libc/src/sgx.rs b/libc/src/sgx.rs index 8a69ad3..7da6269 100644 --- a/libc/src/sgx.rs +++ b/libc/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; |