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
schyrsivochter
relibc
Commits
ef8a64c1
Verified
Commit
ef8a64c1
authored
7 years ago
by
Dan Robertson
Browse files
Options
Downloads
Patches
Plain Diff
Add missing extern crate statements
Add missing extern crate statements.
parent
79123321
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Cargo.toml
+1
-1
1 addition, 1 deletion
Cargo.toml
src/lib.rs
+3
-0
3 additions, 0 deletions
src/lib.rs
with
4 additions
and
1 deletion
Cargo.toml
+
1
−
1
View file @
ef8a64c1
...
...
@@ -18,10 +18,10 @@ fcntl = { path = "src/fcntl" }
fenv
=
{
path
=
"src/fenv"
}
float
=
{
path
=
"src/float"
}
grp
=
{
path
=
"src/grp"
}
semaphore
=
{
path
=
"src/semaphore"
}
mman
=
{
path
=
"src/mman"
}
platform
=
{
path
=
"src/platform"
}
resource
=
{
path
=
"src/resource"
}
semaphore
=
{
path
=
"src/semaphore"
}
stat
=
{
path
=
"src/stat"
}
stdio
=
{
path
=
"src/stdio"
}
stdlib
=
{
path
=
"src/stdlib"
}
...
...
This diff is collapsed.
Click to expand it.
src/lib.rs
+
3
−
0
View file @
ef8a64c1
...
...
@@ -7,8 +7,11 @@ extern crate platform;
extern
crate
ctype
;
extern
crate
errno
;
extern
crate
fcntl
;
extern
crate
fenv
;
extern
crate
float
;
extern
crate
grp
;
extern
crate
mman
;
extern
crate
resource
;
extern
crate
semaphore
;
extern
crate
stat
;
extern
crate
stdio
;
...
...
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