about summary refs log tree commit diff
path: root/library/std/src/sys/vxworks/ext/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'library/std/src/sys/vxworks/ext/mod.rs')
-rw-r--r--library/std/src/sys/vxworks/ext/mod.rs24
1 files changed, 24 insertions, 0 deletions
diff --git a/library/std/src/sys/vxworks/ext/mod.rs b/library/std/src/sys/vxworks/ext/mod.rs
new file mode 100644
index 00000000000..8fa9bd9d1e2
--- /dev/null
+++ b/library/std/src/sys/vxworks/ext/mod.rs
@@ -0,0 +1,24 @@
+#![stable(feature = "rust1", since = "1.0.0")]
+#![allow(missing_docs)]
+
+pub mod ffi;
+pub mod fs;
+pub mod io;
+pub mod process;
+pub mod raw;
+
+#[stable(feature = "rust1", since = "1.0.0")]
+pub mod prelude {
+    #[doc(no_inline)]
+    #[stable(feature = "rust1", since = "1.0.0")]
+    pub use super::ffi::{OsStrExt, OsStringExt};
+    #[doc(no_inline)]
+    #[stable(feature = "rust1", since = "1.0.0")]
+    pub use super::fs::{FileTypeExt, MetadataExt, OpenOptionsExt, PermissionsExt};
+    #[doc(no_inline)]
+    #[stable(feature = "rust1", since = "1.0.0")]
+    pub use super::io::{AsRawFd, FromRawFd, IntoRawFd, RawFd};
+    #[doc(no_inline)]
+    #[stable(feature = "rust1", since = "1.0.0")]
+    pub use super::process::ExitStatusExt;
+}