Merge pull request #22 from Wind-River/master_002

declare EnvKey before use to fix build error
This commit is contained in:
Baoshan 2019-09-11 19:34:23 -07:00 committed by GitHub
commit 08fa803946
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 2 deletions

View file

@ -1,5 +1,6 @@
pub use self::process_common::{Command, ExitStatus, ExitCode, Stdio, StdioPipes};
pub use self::process_inner::Process;
pub use crate::ffi::OsString as EnvKey;
mod process_common;
#[path = "process_vxworks.rs"]

View file

@ -12,8 +12,6 @@ use crate::collections::BTreeMap;
use libc::{c_int, gid_t, uid_t, c_char, EXIT_SUCCESS, EXIT_FAILURE};
pub use crate::ffi::OsString as EnvKey;
////////////////////////////////////////////////////////////////////////////////
// Command
////////////////////////////////////////////////////////////////////////////////