aboutsummaryrefslogtreecommitdiff
path: root/lgc.h
blob: 4f086da30b8428503c1af12fd3c2300352727b93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
** $Id: lgc.h,v 1.5 1999/08/16 20:52:00 roberto Exp roberto $
** Garbage Collector
** See Copyright Notice in lua.h
*/

#ifndef lgc_h
#define lgc_h


#include "lobject.h"


void luaC_checkGC (void);
void luaC_collect (int all);


#endif