Implement io::native::process

This commit is contained in:
Alex Crichton
2013-10-06 13:22:18 -07:00
parent edf4c16997
commit a0d2f71e8e
3 changed files with 753 additions and 1 deletions

View File

@@ -57,7 +57,7 @@ pub fn run(lib_path: &str,
});
for input in input.iter() {
proc.input().write_str(*input);
proc.input().write(input.as_bytes());
}
let output = proc.finish_with_output();