diff options
author | arcnmx <arcnmx@users.noreply.github.com> | 2016-01-26 12:47:08 -0500 |
---|---|---|
committer | Kamal Marhubi <kamal@marhubi.com> | 2016-01-28 00:46:19 -0500 |
commit | f167e8f2f375961abd66c27ceb7f31c6fe659c81 (patch) | |
tree | eb00067af46bd7ccc30ea73113350750b36333ea /src/sched.rs | |
parent | 136bb454d98a9032843259e71f12d8e33cd90f27 (diff) | |
download | nix-f167e8f2f375961abd66c27ceb7f31c6fe659c81.zip |
Move errno::Result back to crate root
Diffstat (limited to 'src/sched.rs')
-rw-r--r-- | src/sched.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sched.rs b/src/sched.rs index 7d7ec0f0..ce34005d 100644 --- a/src/sched.rs +++ b/src/sched.rs @@ -1,7 +1,7 @@ use std::mem; use std::os::unix::io::RawFd; use libc::{c_int, c_uint, c_void, c_ulong, pid_t}; -use errno::{Errno, Result}; +use {Errno, Result}; pub type CloneFlags = c_uint; |