diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2018-10-25 15:30:15 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2018-10-25 15:30:15 -0300 |
commit | 34840301b529686ce8168828b140a478a5d44b53 (patch) | |
tree | daceb3978c3d40fd135fb60e9e60dbff9a47731c /lua.h | |
parent | 41c800b352149e037bdebd5f20d2f25ed2a0e2a5 (diff) | |
download | lua-34840301b529686ce8168828b140a478a5d44b53.tar.gz lua-34840301b529686ce8168828b140a478a5d44b53.tar.bz2 lua-34840301b529686ce8168828b140a478a5d44b53.zip |
To-be-closed variables in the C API
Diffstat (limited to 'lua.h')
-rw-r--r-- | lua.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -333,6 +333,8 @@ LUA_API size_t (lua_stringtonumber) (lua_State *L, const char *s); | |||
333 | LUA_API lua_Alloc (lua_getallocf) (lua_State *L, void **ud); | 333 | LUA_API lua_Alloc (lua_getallocf) (lua_State *L, void **ud); |
334 | LUA_API void (lua_setallocf) (lua_State *L, lua_Alloc f, void *ud); | 334 | LUA_API void (lua_setallocf) (lua_State *L, lua_Alloc f, void *ud); |
335 | 335 | ||
336 | LUA_API void (lua_tobeclosed) (lua_State *L); | ||
337 | |||
336 | 338 | ||
337 | /* | 339 | /* |
338 | ** {============================================================== | 340 | ** {============================================================== |