aboutsummaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
Diffstat (limited to 'lua.h')
-rw-r--r--lua.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lua.h b/lua.h
index cb32ec22..e950dfb4 100644
--- a/lua.h
+++ b/lua.h
@@ -160,7 +160,8 @@ extern const char lua_ident[];
160/* 160/*
161** state manipulation 161** state manipulation
162*/ 162*/
163LUA_API lua_State *(lua_newstate) (lua_Alloc f, void *ud); 163LUA_API lua_State *(lua_newstate) (lua_Alloc f, void *ud,
164 unsigned int seed);
164LUA_API void (lua_close) (lua_State *L); 165LUA_API void (lua_close) (lua_State *L);
165LUA_API lua_State *(lua_newthread) (lua_State *L); 166LUA_API lua_State *(lua_newthread) (lua_State *L);
166LUA_API int (lua_resetthread) (lua_State *L, lua_State *from); 167LUA_API int (lua_resetthread) (lua_State *L, lua_State *from);