Skip to content
Snippets Groups Projects
Commit 924a4b77 authored by stratact's avatar stratact
Browse files

Take 2 for Redox

parent c773d2ff
No related branches found
No related tags found
1 merge request!837Make our own `sys::env::home_dir` function since `std::env::home_dir` is deprecated
......@@ -2,7 +2,9 @@ extern crate libc;
extern crate syscall;
use std::{
env, io, mem,
env::{split_paths, remove_var, var, vars},
io,
mem,
os::unix::{ffi::OsStrExt, io::RawFd},
path::PathBuf,
process::exit,
......@@ -292,6 +294,6 @@ pub mod env {
};
pub fn home_dir() -> Option<PathBuf> {
env::var_os("HOME").map(PathBuf::from);
env::var_os("HOME").map(PathBuf::from)
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment