summaryrefslogtreecommitdiff
path: root/ltable.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-11-19 15:29:23 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-11-19 15:29:23 -0200
commit592a3f289b428e3ee5cc595a266607ad7f5d94ff (patch)
tree19a371157be240f7e0f579117d04d466e911afcd /ltable.h
parent9cdeb275e7c93007b2ece6f81aaeafe530076805 (diff)
downloadlua-github-592a3f289b428e3ee5cc595a266607ad7f5d94ff.tar.gz
first implementation of centralized global state.
Diffstat (limited to 'ltable.h')
-rw-r--r--ltable.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/ltable.h b/ltable.h
index 58d09720..4fb66a91 100644
--- a/ltable.h
+++ b/ltable.h
@@ -1,5 +1,5 @@
/*
-** $Id: ltable.h,v 1.2 1997/09/26 16:46:20 roberto Exp roberto $
+** $Id: ltable.h,v 1.3 1997/10/18 16:29:15 roberto Exp roberto $
** Lua tables (hash)
** See Copyright Notice in lua.h
*/
@@ -10,9 +10,6 @@
#include "lobject.h"
-extern GCnode luaH_root;
-
-
#define node(t,i) (&(t)->node[i])
#define ref(n) (&(n)->ref)
#define val(n) (&(n)->val)