Skip to content
Snippets Groups Projects
Verified Commit ef8a64c1 authored by Dan Robertson's avatar Dan Robertson
Browse files

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
......@@ -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" }
......
......@@ -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;
......
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