diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2018-06-18 09:08:10 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2018-06-18 09:08:10 -0300 |
commit | af70905246acfad225904b64d027e5b01c7b10eb (patch) | |
tree | b6d62db411706f5317e1269aff90e05399cd51b8 /lua.h | |
parent | b95e46621873cfb460e1d11dcd153914d5d69f86 (diff) | |
download | lua-af70905246acfad225904b64d027e5b01c7b10eb.tar.gz lua-af70905246acfad225904b64d027e5b01c7b10eb.tar.bz2 lua-af70905246acfad225904b64d027e5b01c7b10eb.zip |
no need to check whether libraries and host use the same kernel;
Lua should work correctly with several copies of the kernel
Diffstat (limited to 'lua.h')
-rw-r--r-- | lua.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lua.h,v 1.345 2018/03/16 15:33:34 roberto Exp roberto $ | 2 | ** $Id: lua.h,v 1.346 2018/04/04 14:23:41 roberto Exp roberto $ |
3 | ** Lua - A Scripting Language | 3 | ** Lua - A Scripting Language |
4 | ** Lua.org, PUC-Rio, Brazil (http://www.lua.org) | 4 | ** Lua.org, PUC-Rio, Brazil (http://www.lua.org) |
5 | ** See Copyright Notice at the end of this file | 5 | ** See Copyright Notice at the end of this file |
@@ -149,7 +149,7 @@ LUA_API lua_State *(lua_newthread) (lua_State *L); | |||
149 | LUA_API lua_CFunction (lua_atpanic) (lua_State *L, lua_CFunction panicf); | 149 | LUA_API lua_CFunction (lua_atpanic) (lua_State *L, lua_CFunction panicf); |
150 | 150 | ||
151 | 151 | ||
152 | LUA_API const lua_Number *(lua_version) (lua_State *L); | 152 | LUA_API lua_Number (lua_version) (lua_State *L); |
153 | 153 | ||
154 | 154 | ||
155 | /* | 155 | /* |