Unverified Commit 32734b75 authored by Wiktor Kwapisiewicz's avatar Wiktor Kwapisiewicz
Browse files

Fix `hostent` re-export warning by explicitly re-exporting only `c_int`

parent 0773149c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@
#![recursion_limit = "128"] // configure fixed limit across all rust versions

extern crate libc;
pub use libc::*;
pub use libc::c_int;

#[cfg(feature = "unstable_boringssl")]
extern crate bssl_sys;