summaryrefslogtreecommitdiffstats
path: root/lua/src/lgc.h
diff options
context:
space:
mode:
Diffstat (limited to 'lua/src/lgc.h')
-rw-r--r--lua/src/lgc.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/lua/src/lgc.h b/lua/src/lgc.h
new file mode 100644
index 0000000..f26effd
--- /dev/null
+++ b/lua/src/lgc.h
@@ -0,0 +1,19 @@
+/*
+** $Id: lgc.h,v 1.2 2002/07/12 07:49:04 jcatki Exp $
+** Garbage Collector
+** See Copyright Notice in lua.h
+*/
+
+#ifndef lgc_h
+#define lgc_h
+
+
+#include "lobject.h"
+
+
+void luaC_collect (lua_State *L, int all);
+void luaC_collectgarbage (lua_State *L);
+void luaC_checkGC (lua_State *L);
+
+
+#endif