1use crate::records::lua_state::lua_State; 2 3pub unsafe fn lua_mainthread(l: *mut lua_State) -> *mut lua_State { 4 (*(*l).global).mainthread 5}