From 4343420d4d559a7d4cdacdbc1fd61552dcf59f04 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 4 Oct 1999 15:51:04 -0200 Subject: simplified version of `gc' tag method (only for userdata now). --- ltable.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ltable.h') diff --git a/ltable.h b/ltable.h index 6c8bbe40..034acbab 100644 --- a/ltable.h +++ b/ltable.h @@ -1,5 +1,5 @@ /* -** $Id: ltable.h,v 1.11 1999/02/23 14:57:28 roberto Exp roberto $ +** $Id: ltable.h,v 1.12 1999/08/16 20:52:00 roberto Exp roberto $ ** Lua tables (hash) ** See Copyright Notice in lua.h */ @@ -19,7 +19,7 @@ #define luaH_move(t,from,to) (luaH_setint(t, to, luaH_getint(t, from))) Hash *luaH_new (int nhash); -void luaH_free (Hash *frees); +void luaH_free (Hash *t); Node *luaH_present (const Hash *t, const TObject *key); void luaH_set (Hash *t, const TObject *ref, const TObject *val); int luaH_pos (const Hash *t, const TObject *r); -- cgit v1.2.3-55-g6feb