Auto merge of #51555 - ccesare:remove_unused_variables_redox_os, r=kennytm

Removed two unused variables in os.rs

Issue #51419 suggested removing two unused variables in `libstd/sys/redox/os.rs`. This PR implements that change.

It compiles for me locally, but I haven't run any other tests.
This commit is contained in:
bors 2018-06-17 18:06:31 +00:00
commit 2b973e6532

View File

@ -30,9 +30,6 @@ use sys_common::mutex::Mutex;
use sys::{cvt, fd, syscall}; use sys::{cvt, fd, syscall};
use vec; use vec;
const TMPBUF_SZ: usize = 128;
static ENV_LOCK: Mutex = Mutex::new();
extern { extern {
#[link_name = "__errno_location"] #[link_name = "__errno_location"]
fn errno_location() -> *mut i32; fn errno_location() -> *mut i32;