From fdafd4f4a88d1584dea900517445a17d87f8b82f Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 30 Aug 2002 16:09:21 -0300 Subject: new structure for collectable objects, sharing a common header --- lgc.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lgc.h') diff --git a/lgc.h b/lgc.h index 7a456d85..272e7584 100644 --- a/lgc.h +++ b/lgc.h @@ -1,5 +1,5 @@ /* -** $Id: lgc.h,v 1.14 2001/12/10 22:11:23 roberto Exp roberto $ +** $Id: lgc.h,v 1.15 2002/08/16 20:00:28 roberto Exp roberto $ ** Garbage Collector ** See Copyright Notice in lua.h */ @@ -18,6 +18,7 @@ void luaC_callallgcTM (lua_State *L); void luaC_sweep (lua_State *L, int all); void luaC_collectgarbage (lua_State *L); +void luaC_link (lua_State *L, GCObject *o, int tt); #endif -- cgit v1.2.3-55-g6feb