aboutsummaryrefslogtreecommitdiff
path: root/lobject.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 /lobject.h
parenta580480b07cdf7201306b246deeb2fe84f2c25a9 (diff)
downloadlua-eb617df2d87f8476e722ade7319998d7912a6edf.tar.gz
lua-eb617df2d87f8476e722ade7319998d7912a6edf.tar.bz2
lua-eb617df2d87f8476e722ade7319998d7912a6edf.zip
better way to traverse GCnode lists.
Diffstat (limited to 'lobject.h')
-rw-r--r--lobject.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lobject.h b/lobject.h
index 398155f2..fcfb7d3b 100644
--- a/lobject.h
+++ b/lobject.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lobject.h,v 1.1 1997/09/16 19:25:59 roberto Exp roberto $ 2** $Id: lobject.h,v 1.2 1997/09/26 15:02:26 roberto Exp roberto $
3** Type definitions for Lua objects 3** Type definitions for Lua objects
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -163,6 +163,7 @@ extern char *luaO_typenames[];
163int luaO_equalObj (TObject *t1, TObject *t2); 163int luaO_equalObj (TObject *t1, TObject *t2);
164int luaO_redimension (int oldsize); 164int luaO_redimension (int oldsize);
165int luaO_findstring (char *name, char *list[]); 165int luaO_findstring (char *name, char *list[]);
166void luaO_insertlist (GCnode *root, GCnode *node);
166 167
167 168
168#endif 169#endif