Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/libcore/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -170,3 +170,10 @@ pub mod fmt;

// note: does not need to be public
mod tuple;

/* Raw OS-specific types for the current platform/architecture */

pub mod os {
#![allow(missing_docs, bad_style)]
pub mod raw;
}
File renamed without changes.
3 changes: 2 additions & 1 deletion src/libstd/os/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,5 @@ pub use sys::ext as windows;
#[cfg(target_os = "netbsd")] pub mod netbsd;
#[cfg(target_os = "openbsd")] pub mod openbsd;

pub mod raw;
#[stable(feature = "raw_os", since = "1.1.0")]
pub use core::os::raw;