Skip to content

Commit

Permalink
Fix hostent re-export warning by explicitly re-exporting only c_int
Browse files Browse the repository at this point in the history
  • Loading branch information
wiktor-k committed Oct 11, 2023
1 parent 0773149 commit 32734b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openssl-sys/src/lib.rs
Expand Up @@ -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;
Expand Down

0 comments on commit 32734b7

Please sign in to comment.