Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
ion
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
redox-os
ion
Commits
924a4b77
Commit
924a4b77
authored
6 years ago
by
stratact
Browse files
Options
Downloads
Patches
Plain Diff
Take 2 for Redox
parent
c773d2ff
No related branches found
Branches containing commit
No related tags found
1 merge request
!837
Make our own `sys::env::home_dir` function since `std::env::home_dir` is deprecated
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
members/sys/src/sys/redox/mod.rs
+4
-2
4 additions, 2 deletions
members/sys/src/sys/redox/mod.rs
with
4 additions
and
2 deletions
members/sys/src/sys/redox/mod.rs
+
4
−
2
View file @
924a4b77
...
...
@@ -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
)
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment