From af70905246acfad225904b64d027e5b01c7b10eb Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 18 Jun 2018 09:08:10 -0300 Subject: no need to check whether libraries and host use the same kernel; Lua should work correctly with several copies of the kernel --- lua.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lua.h') diff --git a/lua.h b/lua.h index 3f76fbea..12d9e2ec 100644 --- a/lua.h +++ b/lua.h @@ -1,5 +1,5 @@ /* -** $Id: lua.h,v 1.345 2018/03/16 15:33:34 roberto Exp roberto $ +** $Id: lua.h,v 1.346 2018/04/04 14:23:41 roberto Exp roberto $ ** Lua - A Scripting Language ** Lua.org, PUC-Rio, Brazil (http://www.lua.org) ** See Copyright Notice at the end of this file @@ -149,7 +149,7 @@ LUA_API lua_State *(lua_newthread) (lua_State *L); LUA_API lua_CFunction (lua_atpanic) (lua_State *L, lua_CFunction panicf); -LUA_API const lua_Number *(lua_version) (lua_State *L); +LUA_API lua_Number (lua_version) (lua_State *L); /* -- cgit v1.2.3-55-g6feb