about summary refs log tree commit diff
path: root/src/libstd/run.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstd/run.rs')
-rw-r--r--src/libstd/run.rs8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/libstd/run.rs b/src/libstd/run.rs
index 04e42b3eedf..1b880bc43ee 100644
--- a/src/libstd/run.rs
+++ b/src/libstd/run.rs
@@ -20,7 +20,13 @@ use io::process;
 use io;
 use libc::{pid_t, c_int};
 use libc;
-use prelude::*;
+use option::{None,Option,Some};
+use task::spawn;
+use path::{Path,GenericPath};
+use result::Ok;
+use str::Str;
+use vec::Vector;
+use clone::Clone;
 
 /**
  * A value representing a child process.