Imported from ../lua-4.0.1.tar.gz.
[lua.git] / src / lgc.h
blob09b66a2bd39339dc096b15396c577b43f114ee79
1 /*
2 ** $Id: lgc.h,v 1.9 2001/02/02 16:23:20 roberto Exp $
3 ** Garbage Collector
4 ** See Copyright Notice in lua.h
5 */
7 #ifndef lgc_h
8 #define lgc_h
11 #include "lobject.h"
14 void luaC_collect (lua_State *L, int all);
15 void luaC_collectgarbage (lua_State *L);
16 void luaC_checkGC (lua_State *L);
19 #endif