lua/lgc.h

19 lines
262 B
C
Raw Normal View History

1997-09-16 23:25:59 +04:00
/*
** $Id: lgc.h,v 1.6 1999/10/04 17:51:04 roberto Exp roberto $
1997-09-16 23:25:59 +04:00
** Garbage Collector
** See Copyright Notice in lua.h
*/
#ifndef lgc_h
#define lgc_h
#include "lobject.h"
void luaC_checkGC (lua_State *L);
void luaC_collect (lua_State *L, int all);
1997-09-16 23:25:59 +04:00
#endif