From 29ede6aa13144ff7b69c57a87be1ee93f57ae896 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 22 Nov 1999 11:12:07 -0200 Subject: first implementation of multiple states (reentrant code). --- lgc.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lgc.h') diff --git a/lgc.h b/lgc.h index 4f086da3..7e62f737 100644 --- a/lgc.h +++ b/lgc.h @@ -1,5 +1,5 @@ /* -** $Id: lgc.h,v 1.5 1999/08/16 20:52:00 roberto Exp roberto $ +** $Id: lgc.h,v 1.6 1999/10/04 17:51:04 roberto Exp roberto $ ** Garbage Collector ** See Copyright Notice in lua.h */ @@ -11,8 +11,8 @@ #include "lobject.h" -void luaC_checkGC (void); -void luaC_collect (int all); +void luaC_checkGC (lua_State *L); +void luaC_collect (lua_State *L, int all); #endif -- cgit v1.2.3-55-g6feb