]> git.lizzy.rs Git - rust.git/blobdiff - src/libstd/sys/unix/ext/process.rs
Auto merge of #35856 - phimuemue:master, r=brson
[rust.git] / src / libstd / sys / unix / ext / process.rs
index 430ec5f94a6f85da5a0444ddfa0e73b4f52d9f33..5bd92f2eb574d7a85281000626fb72bcd1baf99c 100644 (file)
@@ -12,8 +12,6 @@
 
 #![stable(feature = "rust1", since = "1.0.0")]
 
-use prelude::v1::*;
-
 use io;
 use os::unix::io::{FromRawFd, RawFd, AsRawFd, IntoRawFd};
 use process;
@@ -114,7 +112,7 @@ fn exec(&mut self) -> io::Error {
 pub trait ExitStatusExt {
     /// Creates a new `ExitStatus` from the raw underlying `i32` return value of
     /// a process.
-    #[unstable(feature = "exit_status_from", issue = "32713")]
+    #[stable(feature = "exit_status_from", since = "1.12.0")]
     fn from_raw(raw: i32) -> Self;
 
     /// If the process was terminated by a signal, returns that signal.