diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2015-06-18 16:14:50 -0700 | 
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2015-06-18 16:14:50 -0700 | 
| commit | 45f830b18c58fa5a3020d8a92144b05b551b9074 (patch) | |
| tree | b628d03ac5df13feee405531717f9ee726afb98b /src/libstd/sys/unix/ext/mod.rs | |
| parent | 9cc0b2247509d61d6a246a5c5ad67f84b9a2d8b6 (diff) | |
| download | rust-45f830b18c58fa5a3020d8a92144b05b551b9074.tar.gz rust-45f830b18c58fa5a3020d8a92144b05b551b9074.zip | |
std: Add FromRaw{Fd,Handle,Socket} to os preludes
These were just left out by mistake!
Diffstat (limited to 'src/libstd/sys/unix/ext/mod.rs')
| -rw-r--r-- | src/libstd/sys/unix/ext/mod.rs | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/libstd/sys/unix/ext/mod.rs b/src/libstd/sys/unix/ext/mod.rs index 6fde45a7301..48c77480899 100644 --- a/src/libstd/sys/unix/ext/mod.rs +++ b/src/libstd/sys/unix/ext/mod.rs @@ -41,7 +41,7 @@ pub mod raw; #[stable(feature = "rust1", since = "1.0.0")] pub mod prelude { #[doc(no_inline)] - pub use super::io::{RawFd, AsRawFd}; + pub use super::io::{RawFd, AsRawFd, FromRawFd}; #[doc(no_inline)] #[stable(feature = "rust1", since = "1.0.0")] pub use super::ffi::{OsStrExt, OsStringExt}; #[doc(no_inline)] | 
