Skip to content

Commit

Permalink
Explicitly re-export tcod_sys (ffi)
Browse files Browse the repository at this point in the history
Exporting extern crates without marking them public will be phased out
in future versions of the compiler, see
rust-lang/rust#31362
  • Loading branch information
jgilchrist committed Apr 18, 2016
1 parent 8581410 commit 9417232
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/bindings.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
pub extern crate tcod_sys as ffi;

extern crate libc;
extern crate tcod_sys as ffi;

pub use std::ffi::CString;
pub use self::libc::{c_char, c_int, c_float, c_uint, c_void, uint8_t};
Expand Down

0 comments on commit 9417232

Please sign in to comment.