diff options
author | Alex Orlenko <zxteam@protonmail.com> | 2019-10-02 11:49:30 +0100 |
---|---|---|
committer | Alex Orlenko <zxteam@protonmail.com> | 2019-10-02 22:12:28 +0100 |
commit | b7c578c27403e9908a35e60a855b1232313edb7b (patch) | |
tree | e5779f50033bb31d1bdca31759a0c4978aafea6f /src/ffi/mod.rs | |
parent | 224ed8ff5271bb8d8acb2e944d91564510c67132 (diff) | |
download | mlua-b7c578c27403e9908a35e60a855b1232313edb7b.zip |
Replace libc with std::os::raw
Diffstat (limited to 'src/ffi/mod.rs')
-rw-r--r-- | src/ffi/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ffi/mod.rs b/src/ffi/mod.rs index f45c227..8e41355 100644 --- a/src/ffi/mod.rs +++ b/src/ffi/mod.rs @@ -159,7 +159,7 @@ pub use self::lua::{ }; // auxiliary library types -pub use self::lauxlib::{luaL_Buffer, luaL_Reg, luaL_Stream}; +pub use self::lauxlib::{luaL_Buffer, luaL_Reg}; // auxiliary library functions pub use self::lauxlib::{ |