aboutsummaryrefslogtreecommitdiff
path: root/lgc.h
diff options
context:
space:
mode:
Diffstat (limited to 'lgc.h')
-rw-r--r--lgc.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lgc.h b/lgc.h
index 4f086da3..7e62f737 100644
--- a/lgc.h
+++ b/lgc.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lgc.h,v 1.5 1999/08/16 20:52:00 roberto Exp roberto $ 2** $Id: lgc.h,v 1.6 1999/10/04 17:51:04 roberto Exp roberto $
3** Garbage Collector 3** Garbage Collector
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -11,8 +11,8 @@
11#include "lobject.h" 11#include "lobject.h"
12 12
13 13
14void luaC_checkGC (void); 14void luaC_checkGC (lua_State *L);
15void luaC_collect (int all); 15void luaC_collect (lua_State *L, int all);
16 16
17 17
18#endif 18#endif