summaryrefslogtreecommitdiffstats
path: root/vendor/libc/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/libc/src/lib.rs')
-rw-r--r--vendor/libc/src/lib.rs10
1 files changed, 6 insertions, 4 deletions
diff --git a/vendor/libc/src/lib.rs b/vendor/libc/src/lib.rs
index d9bd318d1..1b6f0c077 100644
--- a/vendor/libc/src/lib.rs
+++ b/vendor/libc/src/lib.rs
@@ -1,8 +1,4 @@
//! libc - Raw FFI bindings to platforms' system libraries
-//!
-//! [Documentation for other platforms][pd].
-//!
-//! [pd]: https://rust-lang.github.io/libc/#platform-specific-documentation
#![crate_name = "libc"]
#![crate_type = "rlib"]
#![allow(
@@ -139,6 +135,12 @@ cfg_if! {
mod hermit;
pub use hermit::*;
+ } else if #[cfg(target_os = "teeos")] {
+ mod fixed_width_ints;
+ pub use fixed_width_ints::*;
+
+ mod teeos;
+ pub use teeos::*;
} else if #[cfg(all(target_env = "sgx", target_vendor = "fortanix"))] {
mod fixed_width_ints;
pub use fixed_width_ints::*;