mirror of
https://github.com/lua/lua
synced 2026-09-26 16:17:11 +03:00
Details
- 'unsigned int' -> 'unsigned' - Some explicit casts to avoid warnings - Test avoids printing the value of 'fail' (which may not be nil)
This commit is contained in:
parent
cc2b66c856
commit
52aa2b5d24
4 changed files with 5 additions and 6 deletions
3
lua.h
3
lua.h
|
|
@ -160,8 +160,7 @@ extern const char lua_ident[];
|
|||
/*
|
||||
** state manipulation
|
||||
*/
|
||||
LUA_API lua_State *(lua_newstate) (lua_Alloc f, void *ud,
|
||||
unsigned int seed);
|
||||
LUA_API lua_State *(lua_newstate) (lua_Alloc f, void *ud, unsigned seed);
|
||||
LUA_API void (lua_close) (lua_State *L);
|
||||
LUA_API lua_State *(lua_newthread) (lua_State *L);
|
||||
LUA_API int (lua_closethread) (lua_State *L, lua_State *from);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue