summary refs log tree commit diff
path: root/src/libstd/sys/vxworks/ext/mod.rs
blob: d0f467b303ff93615a0dfecf78fd816093e7bb69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![stable(feature = "rust1", since = "1.0.0")]
#![allow(missing_docs)]

pub mod io;
pub mod ffi;
pub mod fs;
pub mod raw;
pub mod process;

#[stable(feature = "rust1", since = "1.0.0")]
pub mod prelude {
    #[doc(no_inline)] #[stable(feature = "rust1", since = "1.0.0")]
    pub use super::io::{RawFd, AsRawFd, FromRawFd, IntoRawFd};
    #[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::{PermissionsExt, OpenOptionsExt, MetadataExt, FileTypeExt};
}