Skip to content

Commit

Permalink
Merge pull request #3 from A1-Triard/master
Browse files Browse the repository at this point in the history
no_std
  • Loading branch information
mneumann authored Sep 27, 2021
2 parents a05e5c9 + 897ee9c commit 8927b2f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ keywords = ["dragonfly"]
include = ["Cargo.toml", "LICENSE", "README.md", "build.rs", "src/lib.rs", "src/errno.c" ]

[dependencies]
libc = "0.2"
libc = { version = "0.2", default-features = false }

[build-dependencies]
cc = "1.0"
2 changes: 2 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![no_std]

extern crate libc;

#[link(name="errno", kind="static")]
Expand Down

0 comments on commit 8927b2f

Please sign in to comment.