1
Fork 0

Rollup merge of #67041 - Wind-River:master_base, r=alexcrichton

add ExitStatusExt into prelude

r? @alexcrichton
This commit is contained in:
Yuki Okushi 2019-12-06 15:37:11 +09:00 committed by GitHub
commit 1bb868c5d6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,4 +18,7 @@ pub mod prelude {
#[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;
}