diff options
| author | Yuki Okushi <huyuumi.dev@gmail.com> | 2019-12-06 15:37:11 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-12-06 15:37:11 +0900 |
| commit | 1bb868c5d63a2f73f70558075781b9c49e76c860 (patch) | |
| tree | 5170a9146b557e6e2622b9dffd13a1b4b59f6282 | |
| parent | f7c2631d4a161563edb3eb142a8b0b2d1429ab5c (diff) | |
| parent | 28b37a24f3c1b33e97f729a118660b95d6b53e29 (diff) | |
| download | rust-1bb868c5d63a2f73f70558075781b9c49e76c860.tar.gz rust-1bb868c5d63a2f73f70558075781b9c49e76c860.zip | |
Rollup merge of #67041 - Wind-River:master_base, r=alexcrichton
add ExitStatusExt into prelude r? @alexcrichton
| -rw-r--r-- | src/libstd/sys/vxworks/ext/mod.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libstd/sys/vxworks/ext/mod.rs b/src/libstd/sys/vxworks/ext/mod.rs index 251a198f821..8fa9bd9d1e2 100644 --- a/src/libstd/sys/vxworks/ext/mod.rs +++ b/src/libstd/sys/vxworks/ext/mod.rs @@ -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; } |
