Merge pull request #77 from dlrobertson/add_extern_crate

Add missing extern crate statements
This commit is contained in:
Jeremy Soller
2018-03-12 21:56:12 -06:00
committed by GitHub
2 changed files with 4 additions and 1 deletions
+1 -1
View File
@@ -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" }
+3
View File
@@ -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;