Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
relibc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
relibc
Commits
eaf73389
Verified
Commit
eaf73389
authored
6 years ago
by
jD91mZM2
Browse files
Options
Downloads
Patches
Plain Diff
Add aliases for compatibility
parent
919ae09d
No related branches found
No related tags found
No related merge requests found
Pipeline
#549
failed
6 years ago
Stage: build
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/errno/src/lib.rs
+10
-0
10 additions, 0 deletions
src/errno/src/lib.rs
src/sys_stat/src/lib.rs
+5
-0
5 additions, 0 deletions
src/sys_stat/src/lib.rs
with
15 additions
and
0 deletions
src/errno/src/lib.rs
+
10
−
0
View file @
eaf73389
...
...
@@ -6,6 +6,16 @@ extern crate platform;
use
platform
::
types
::
*
;
#[no_mangle]
pub
unsafe
extern
"C"
fn
__errno
()
->
*
mut
c_int
{
&
mut
platform
::
errno
}
#[no_mangle]
pub
unsafe
extern
"C"
fn
__errno_location
()
->
*
mut
c_int
{
__errno
()
}
pub
const
EPERM
:
c_int
=
1
;
/* Operation not permitted */
pub
const
ENOENT
:
c_int
=
2
;
/* No such file or directory */
pub
const
ESRCH
:
c_int
=
3
;
/* No such process */
...
...
This diff is collapsed.
Click to expand it.
src/sys_stat/src/lib.rs
+
5
−
0
View file @
eaf73389
...
...
@@ -64,6 +64,11 @@ pub extern "C" fn fstat(fildes: c_int, buf: *mut platform::types::stat) -> c_int
platform
::
fstat
(
fildes
,
buf
)
}
#[no_mangle]
pub
extern
"C"
fn
__fxstat
(
_ver
:
c_int
,
fildes
:
c_int
,
buf
:
*
mut
platform
::
types
::
stat
)
->
c_int
{
fstat
(
fildes
,
buf
)
}
#[no_mangle]
pub
extern
"C"
fn
lstat
(
path
:
*
const
c_char
,
buf
:
*
mut
platform
::
types
::
stat
)
->
c_int
{
platform
::
lstat
(
path
,
buf
)
...
...
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