aboutsummaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2018-10-25 15:30:15 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2018-10-25 15:30:15 -0300
commit34840301b529686ce8168828b140a478a5d44b53 (patch)
treedaceb3978c3d40fd135fb60e9e60dbff9a47731c /lua.h
parent41c800b352149e037bdebd5f20d2f25ed2a0e2a5 (diff)
downloadlua-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.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/lua.h b/lua.h
index a014be1f..16d685cc 100644
--- a/lua.h
+++ b/lua.h
@@ -333,6 +333,8 @@ LUA_API size_t (lua_stringtonumber) (lua_State *L, const char *s);
333LUA_API lua_Alloc (lua_getallocf) (lua_State *L, void **ud); 333LUA_API lua_Alloc (lua_getallocf) (lua_State *L, void **ud);
334LUA_API void (lua_setallocf) (lua_State *L, lua_Alloc f, void *ud); 334LUA_API void (lua_setallocf) (lua_State *L, lua_Alloc f, void *ud);
335 335
336LUA_API void (lua_tobeclosed) (lua_State *L);
337
336 338
337/* 339/*
338** {============================================================== 340** {==============================================================