We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e24fffe commit dbef124Copy full SHA for dbef124
src/libcore/lib.rs
@@ -170,3 +170,10 @@ pub mod fmt;
170
171
// note: does not need to be public
172
mod tuple;
173
+
174
+/* Raw OS-specific types for the current platform/architecture */
175
176
+pub mod os {
177
+ #![allow(missing_docs, bad_style)]
178
+ pub mod raw;
179
+}
src/libstd/os/raw.rs renamed to src/libcore/os/raw.rs
src/libstd/os/mod.rs
@@ -31,4 +31,5 @@ pub use sys::ext as windows;
31
#[cfg(target_os = "netbsd")] pub mod netbsd;
32
#[cfg(target_os = "openbsd")] pub mod openbsd;
33
34
-pub mod raw;
+#[stable(feature = "raw_os", since = "1.1.0")]
35
+pub use core::os::raw;
0 commit comments