aboutsummaryrefslogtreecommitdiff
path: root/lobject.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1998-06-18 13:57:03 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1998-06-18 13:57:03 -0300
commitc9902be294f5c2dca8a67a67fd324f91e4352c0a (patch)
tree3f3ef43d231334ee60c13bf310f7995845e97cab /lobject.h
parent112c9d53ab47e77fd09d4ecb9b11d432ed906c88 (diff)
downloadlua-c9902be294f5c2dca8a67a67fd324f91e4352c0a.tar.gz
lua-c9902be294f5c2dca8a67a67fd324f91e4352c0a.tar.bz2
lua-c9902be294f5c2dca8a67a67fd324f91e4352c0a.zip
"findname" moved from lobject.c to lauxlib.c (so libraries may use it).
Diffstat (limited to 'lobject.h')
-rw-r--r--lobject.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/lobject.h b/lobject.h
index c2fa373a..18cf2097 100644
--- a/lobject.h
+++ b/lobject.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lobject.h,v 1.19 1998/05/18 22:26:03 roberto Exp roberto $ 2** $Id: lobject.h,v 1.20 1998/06/11 18:21:37 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*/
@@ -196,7 +196,6 @@ extern TObject luaO_nilobject;
196 196
197int luaO_equalObj (TObject *t1, TObject *t2); 197int luaO_equalObj (TObject *t1, TObject *t2);
198int luaO_redimension (int oldsize); 198int luaO_redimension (int oldsize);
199int luaO_findstring (char *name, char *list[]);
200void luaO_insertlist (GCnode *root, GCnode *node); 199void luaO_insertlist (GCnode *root, GCnode *node);
201 200
202#ifdef OLD_ANSI 201#ifdef OLD_ANSI