better way to traverse GCnode lists.

This commit is contained in:
Roberto Ierusalimschy
1997-09-26 13:46:20 -03:00
parent a580480b07
commit eb617df2d8
7 changed files with 40 additions and 55 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: $
** $Id: ltable.h,v 1.1 1997/09/16 19:25:59 roberto Exp roberto $
** Lua tables (hash)
** See Copyright Notice in lua.h
*/
@@ -10,7 +10,7 @@
#include "lobject.h"
extern Hash *luaH_root;
extern GCnode luaH_root;
#define node(t,i) (&(t)->node[i])