aboutsummaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
Diffstat (limited to 'lua.h')
-rw-r--r--lua.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/lua.h b/lua.h
index fc4e2388..d9962cec 100644
--- a/lua.h
+++ b/lua.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.h,v 1.331 2016/05/30 15:53:28 roberto Exp roberto $ 2** $Id: lua.h,v 1.332 2016/12/22 15:51:20 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
@@ -308,6 +308,8 @@ LUA_API int (lua_isyieldable) (lua_State *L);
308#define LUA_GCSETPAUSE 6 308#define LUA_GCSETPAUSE 6
309#define LUA_GCSETSTEPMUL 7 309#define LUA_GCSETSTEPMUL 7
310#define LUA_GCISRUNNING 9 310#define LUA_GCISRUNNING 9
311#define LUA_GCGEN 10
312#define LUA_GCINC 11
311 313
312LUA_API int (lua_gc) (lua_State *L, int what, int data); 314LUA_API int (lua_gc) (lua_State *L, int what, int data);
313 315