1 /*
2 ** $Id$
3 ** Garbage Collector
4 ** See Copyright Notice in lua.h
5 */
6 
7 #ifndef lgc_h
8 #define lgc_h
9 
10 
11 #include "lobject.h"
12 
13 
14 void luaC_collect (lua_State *L, int all);
15 void luaC_collectgarbage (lua_State *L);
16 void luaC_checkGC (lua_State *L);
17 
18 
19 #endif
20