Skip to content

Commit e0f5444

Browse files
committed
Auto merge of #284 - fiveop:fix_build, r=posborne
Make crate libc import public. On currently nightly I got an error regarding the public export of libc in sys::ioctl. It now requires us to import the extern crate publicly.
2 parents 56398d8 + 37a2884 commit e0f5444

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#[macro_use]
1414
extern crate bitflags;
1515

16-
extern crate libc;
16+
pub extern crate libc;
1717

1818
#[cfg(test)]
1919
extern crate nix_test as nixtest;

0 commit comments

Comments
 (0)