diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-11-19 15:29:23 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-11-19 15:29:23 -0200 |
commit | 592a3f289b428e3ee5cc595a266607ad7f5d94ff (patch) | |
tree | 19a371157be240f7e0f579117d04d466e911afcd /ltable.h | |
parent | 9cdeb275e7c93007b2ece6f81aaeafe530076805 (diff) | |
download | lua-592a3f289b428e3ee5cc595a266607ad7f5d94ff.tar.gz lua-592a3f289b428e3ee5cc595a266607ad7f5d94ff.tar.bz2 lua-592a3f289b428e3ee5cc595a266607ad7f5d94ff.zip |
first implementation of centralized global state.
Diffstat (limited to 'ltable.h')
-rw-r--r-- | ltable.h | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ltable.h,v 1.2 1997/09/26 16:46:20 roberto Exp roberto $ | 2 | ** $Id: ltable.h,v 1.3 1997/10/18 16:29:15 roberto Exp roberto $ |
3 | ** Lua tables (hash) | 3 | ** Lua tables (hash) |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -10,9 +10,6 @@ | |||
10 | #include "lobject.h" | 10 | #include "lobject.h" |
11 | 11 | ||
12 | 12 | ||
13 | extern GCnode luaH_root; | ||
14 | |||
15 | |||
16 | #define node(t,i) (&(t)->node[i]) | 13 | #define node(t,i) (&(t)->node[i]) |
17 | #define ref(n) (&(n)->ref) | 14 | #define ref(n) (&(n)->ref) |
18 | #define val(n) (&(n)->val) | 15 | #define val(n) (&(n)->val) |