diff --git a/Cargo.toml b/Cargo.toml index 55d8d5e913..85785975e8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" } diff --git a/src/lib.rs b/src/lib.rs index 8becd7bd0d..b51ef10c08 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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;