summaryrefslogtreecommitdiff
path: root/lfunc.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-09-26 13:46:20 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-09-26 13:46:20 -0300
commiteb617df2d87f8476e722ade7319998d7912a6edf (patch)
tree25d2635a076263518cdbb7da1693b674e0a4541e /lfunc.h
parenta580480b07cdf7201306b246deeb2fe84f2c25a9 (diff)
downloadlua-github-eb617df2d87f8476e722ade7319998d7912a6edf.tar.gz
better way to traverse GCnode lists.
Diffstat (limited to 'lfunc.h')
-rw-r--r--lfunc.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lfunc.h b/lfunc.h
index ed5a085b..4a7a6ac9 100644
--- a/lfunc.h
+++ b/lfunc.h
@@ -1,5 +1,5 @@
/*
-** $Id: $
+** $Id: lfunc.h,v 1.1 1997/09/16 19:25:59 roberto Exp roberto $
** Lua Function structures
** See Copyright Notice in lua.h
*/
@@ -11,8 +11,8 @@
#include "lobject.h"
-extern TProtoFunc *luaF_root;
-extern Closure *luaF_rootcl;
+extern GCnode luaF_root;
+extern GCnode luaF_rootcl;
TProtoFunc *luaF_newproto (void);