summaryrefslogtreecommitdiff
path: root/src/ffi/lua.rs
diff options
context:
space:
mode:
authorAlex Orlenko <zxteam@protonmail.com>2019-09-27 17:27:37 +0100
committerAlex Orlenko <zxteam@protonmail.com>2019-09-29 12:53:13 +0100
commitaffa85feb08ddae41c000764475486ebd6772f91 (patch)
tree3e02c8562341acc6f26d9943b3a5af90ca9babfe /src/ffi/lua.rs
parent53b352466ecfc8b8ab72e19b1851115674e37ab5 (diff)
downloadmlua-affa85feb08ddae41c000764475486ebd6772f91.zip
Backport changes from rlua 0.16 (master branch)
Diffstat (limited to 'src/ffi/lua.rs')
-rw-r--r--src/ffi/lua.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ffi/lua.rs b/src/ffi/lua.rs
index 141402c..ead4f7a 100644
--- a/src/ffi/lua.rs
+++ b/src/ffi/lua.rs
@@ -23,9 +23,10 @@
//! Contains definitions from `lua.h`.
use libc::{c_void, c_int, c_char, c_uchar, size_t};
-use ffi::luaconf;
use std::ptr;
+use super::luaconf;
+
pub use super::glue::{LUA_VERSION_MAJOR, LUA_VERSION_MINOR, LUA_VERSION_NUM, LUA_VERSION_RELEASE};
pub use super::glue::{LUA_VERSION, LUA_RELEASE, LUA_COPYRIGHT, LUA_AUTHORS};
pub use super::glue::{LUA_REGISTRYINDEX};